RUAL Core v14.0.5
Our platform operates on software, commonly known as core. This software can be run either locally within the cloud environment of Enterprise Customers or within our AWS cluster.
Development Release v14.0.5
This is the latest, development release. The documentation and notes of this release is still under development, blocks listed on this pages may change in the final release.
Modified or newly introduced blocks
In this release 6 new blocks were introduced. You'll find a complete list of blocks at the bottom of this page.
Blocks introduced
find by extensionfile
Filters a list of files by extension (e.g. mp4, jpg, png). Returns matching files.
is file type file
Checks whether the given files match a specific extension (e.g. mp4, jpg, png).
map values to guid seeds array
Maps each value in the array through the deterministic GUID seed hash. Produces an array of GUIDs where each GUID is derived from the corresponding value. Much faster than using array map with a custom function.
storage left join document function
Left joins documents from a storage into the given array. Looks up each document by its corresponding GUID and nests the found document under the specified key. Documents without a match get null for that key.
storage left join exists function
Left joins a boolean field into the given array based on whether a document exists in the storage for each corresponding GUID. Sets the field to true when found, false when not.
upsert document function
Creates or updates a document with the given GUID. If the document does not exist, it will be created. If it already exists, the mutations will be applied to the existing document.