DatasetExportToOptions
Hierarchy
- DatasetExportOptions
- DatasetExportToOptions
Index
Properties
optionalclean
optionaldesc
If true
then the objects are sorted by createdAt
in descending order.
Otherwise they are sorted in ascending order.
optionalfields
An array of field names that will be included in the result. If omitted, all fields are included in the results.
optionalfromDataset
optionalskipEmpty
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.
optionalskipHidden
If true
then the function doesn't return hidden fields (fields starting with "#" character).
optionaltoKVS
optionalunwind
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.