Skip to content
This repository was archived by the owner on Aug 4, 2019. It is now read-only.
Travis CI edited this page Jan 6, 2018 · 1 revision

Legend

Paging
Param Meaning
take Rows per page
skip Skip N rows
Search & Filtering

You can search and filter the result via query-string:

    /path/to/resource?field=[op]value1[,value2]
Operator Meaning Example
= id=2
! != id=!2
> > id=>2
>= >= id=>=2
< < id=<2
<= <= id=<=2
% LIKE title=u%s
~,% ILIKE title=~u%s
IN() IN id=IN(2,3,4)
!IN() NOT IN id=!IN(2,3,4)
BETWEEN() BETWEEN id=BETWEEN(2,9)
Sorting

You can sort like this:

    /path/to/resource?sort=[op]value
Operator Meaning
ASC
- DESC

Clone this wiki locally