Querying
Chain after.getAll():
Filtering (filter)
- Method:
filter(conditions) - Supported Operators: eq, neq, gt, gte, lt, lte, like, ilike, in, not (see list of operators)
Ordering (order)
- Method:
order(field, direction?)(directiondefaults to ‘asc’)
Pagination (limit, offset)
- Methods:
limit(count),offset(count)
.getAll().
Supported operators
All used withinfilter():
Limitations
- Only one filterable condition per field per query (no compound filters across multiple fields)
- Range filters (e.g.,
{ gte: x, lte: y }) not supported - Method chaining order is flexible, but all must be chained after
getAll()

