The Find Storage Component searches for values in a specified storage location based on a provided pattern.
This component is used to retrieve stored values that match a specific search pattern, allowing structured querying of stored data.
in
Receives the search pattern to find matching storage entries.
out
Emits a list of found items matching the search pattern.
notFound
Emits the search pattern if no matching items are found.
storeId
string
The ID of the storage space where the search will be performed.
Receives Search Pattern: Accepts a pattern to match stored entries.
Searches Storage: Queries the specified storeId
for matching values.
Returns Results:
If matches are found, outputs the list of matching items to out
.
If no matches are found, emits the search pattern to notFound
.
key
string
The key of the found item.
value
string
The value of the found item.
createdAt
string
The timestamp when the item was created.
updatedAt
string
The timestamp when the item was last updated.
Pattern-Based Search: Uses regular expressions to match stored values.
Efficient Querying: Enables structured searches within large storage datasets.
Supports Workflow Automation: Useful for dynamically retrieving stored data based on input patterns.
This component is essential for workflows that require structured searches within stored data for automation, validation, and reporting purposes.