Skip to main content

FindArgs interface

This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.

Represents an IDataStoreORM Query.

This API may change without a BREAKING CHANGE notice.

Signature:

export interface FindArgs<TColumns>

Properties

PropertyModifiersTypeDescription
order?Order<TColumns>[](BETA) (Optional) Sorts the results according to the given array of column priorities.
skip?number(BETA) (Optional) Ignores the first number of entries in a IDataStoreORM query result.
take?number(BETA) (Optional) Returns at most this number of results from a IDataStoreORM query.
where?Where<TColumns>[](BETA) (Optional) Imposes constraints on the values of the given columns. WHERE clauses are combined using AND.