Blocks within storage

List of all the block within the storage group. If you're running an older core version, there may be groups listed here that are not available to you (yet).

restore document condition v9.2.5 Restores a single document from the removed state and adds a revisions for this modification. search array v13.0.4 searches in the given storage based on a query. search single object v10.6.2 searches in the given storage based on a query and returns maximum one result. trigger event object v13.0.9 Event is executed when the storage receives an event relevant update (removed, created, updated or saved). storage left join document array v14.0.5 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. wait for document condition v12.0.0 Using the given timestamp will wait for the document to be present in search. search streaming number v10.4.28 streams the results of the search to a function. When using a limit, the first scroll will always fetch 10k items, we'll just truncate them if your limit is < 10k. update document condition v9.2.5 Update document in the given storage and creates a revision for it. storage left join exists array v14.0.5 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. find existing documents array v10.4.28 returns array of existing and non-existing documents in a given storage from an array of objects. selector storage v10.4.28 Lets you choose a storage to be used on the connected blocks. get mapping condition v10.4.28 Returns the mapping of a given storage. permanently delete document condition v9.2.5 Deletes the given document from the given storage permanently and unrecoverably. create multiple documents condition v9.2.5 Creates multiple documents in the given storage, each item in the array becomes a document. search neighbors array v15.0.0 Given an anchor GUID, returns the N documents directly before and the M directly after it when the storage is sorted by the chosen field. Use this to show context around a specific document (e.g. messages around a chat message) without paginating the whole storage. restore multiple documents condition v9.2.5 Restores multiple documents from the removed state. update multiple documents condition v9.2.5 Updates multiple documents in the given storage remove multiple documents condition v9.2.5 Removes multiple documents from the given storage. create document condition v14.0.3 Creates a document in the given storage. upsert document condition v14.0.5 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. get document object v13.0.7 get a specific document based on the given GUID dynamic storage storage v10.4.28 define a storage using a dynamic value set document expiry condition v11.0.0 Updates the expiry of the given document from the given storage. remove document object v9.2.5 Removes the given document from the given storage. get multiple documents (cached) array v10.4.28 Get multiple documents from the given storage using the hot document cache. Fetches each document individually. Skips documents that do not exist or are removed. get multiple documents array v14.0.4 Get multiple documents from the given storage using a single Elasticsearch multi-get request. Much faster than fetching each document individually.
Back to storage Return to the main group to view all sub-groups