Fetch a list of data records
Get a list (paged) of data from the built-in database. Filter according to your needs, determine the amount of items & the sorting of the data.
Input parameters
Name | Description | Type | Required | Default value |
---|
Data format | The data format to fetch data for | DATA_FORMAT | true | |
Page | The number of the page to fetch. Starts counting from 0. | NUMBER | true | 0 |
Amount per page | The maximum amount of results per page. | NUMBER | true | 10 |
Filters | Filter the list of data retrieved based on attributes with an AND relationship towards eachother | ARRAY | false | null |
Filters (OR) | Filter the list of data retrieved based on attributes with an OR relationship towards eachother | ARRAY | false | |
Attributes | Only fetch these attributes from your database | ARRAY | false | |
Sort by | Sort the list of data retrieved | ARRAY | false | |
Output
Name | Description | Type | Default value |
---|
Found data page | The name of the variable containing the page of found data. | PAGE | FOUND_DATA |