Copy constructor for pageable queries in account_integrations
collection.
The document instance (defaults to undefined
) (optional).
The document entry used as a filter. This property can be used
to query documents by equality of fields.
Note that queries with more complex operators must use the
filterQuery property instead and leave this one blank.
The custom filter query that must be used. This property can
be used to filter results using enhanced mongodb operators,
including: $ne
, $in
, $gte
, $lte
, etc.
Note that queries that use only the equality operator can
use the document
property as well which removes the need
to specify the operators (always uses equality).
Determines the order direction that is being requested. This will
define the order direction of results that are returned.
Possible values are:
"asc"
: Sorts the results in ascending order, i.e. "first in, first out"."desc"
: Sorts the results in descendeing order, i.e. "last in, first out".
Determines the page number that is being requested. This will
also define the offset of results that are returned.
Determines the page size that is being requested. This will
also define the maximum number of results that are returned.
Determines the sort field that is being requested. This will
define the field used to sort results that are returned.
This method must return an object that can be used as the value
for the mongodb find
operations to represent one document.
Typically, this method returns an object where keys are the
primary key(s) of the entity and values are those of the
document represented by the current instance.
The individual document data that is used in a query.
This method implements the getter logic for the current queryable document. Typically, the document property contains an individual document with primary keys set.
This method implements the setter logic for the current queryable document.
Generated using TypeDoc
This class augments Queryable objects enabling accounts to be queried by
address
and bytransactionsCount
.The main purpose of this class shall be to perform queries against the
account_integrations
collection.v0.3.0