Skip to content

Query syntax

View as Markdown

Query parser used by table list and export routes.

  • Filters use filter[column][operator]=value; filter[column]=value is invalid.
  • Operators are eq, neq, gt, gte, lt, lte, in, nin, contains, startswith, endswith, and nullable is.
  • q searches configured columns and combines with filters using AND.
  • sort=created_at,-id applies ascending then descending sort.
  • page is one-based; limit defaults to 50 and is bounded to 1..1000.
  • Unknown shapes, columns, operators, values, pages, and limits return structured 400 errors.