List Records
Last updated
Last updated
List records node helps in displaying or retrieving data from a database, typically in the form of a list. It's like pulling out a list of items from a file cabinet .
When you list records, you're essentially fetching and presenting the data stored in the database for review or analysis.
Node name
true
Database collection
Database collection in which you want to list
true
Limit
Specifies the maximum number of records to be returned by a query
false
Offset
Specifies the starting point from which to retrieve records. It determines how many records to skip before beginning to return data.
false
result
- The result of the query at runtime. You can access this using Magical Autocomplete (e.g. $.<node_name>.result
) in any node below this node.