externalDatasetDataOptions
Index
Properties
externaloptionalclean
externaloptionaldesc
If true
then the objects are sorted by createdAt
in descending order.
Otherwise they are sorted in ascending order.
externaloptionalfields
An array of field names that will be included in the result. If omitted, all fields are included in the results.
externaloptionallimit
Maximum number of array elements to return.
externaloptionaloffset
Number of array elements that should be skipped at the start.
externaloptionalskipEmpty
If true
then the function doesn't return empty items.
Note that in this case the returned number of items might be lower than limit parameter and pagination must be done using the limit
value.
externaloptionalskipHidden
If true
then the function doesn't return hidden fields (fields starting with "#" character).
externaloptionalunwind
Specifies a name of the field in the result objects that will be used to unwind the resulting objects. By default, the results are returned as they are.
If
true
then the function returns only non-empty items and skips hidden fields (i.e. fields starting with#
character). Note that theclean
parameter is a shortcut forskipHidden: true
andskipEmpty: true
options.