Skip to main content

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?) (direction defaults to ‘asc’)

Pagination (limit, offset)

  • Methods: limit(count), offset(count)
Note: All these must be chained after .getAll().

Supported operators

All used within filter():

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()