Pagination & Filtering
In your GET /items requests, you can pass in pagination params: page (aka offset) and pageSize (aka limit). For example:
Note: default page
is 1 and the default pageSize
is 25. There's a max pageSize of 200.
Filtering
You can filter your results using the q
param and the filtering DML. The basic format is: "?q=<field_name>[operator]<value>;<field_name>[operator]<value>`
For example, let's say we want to filter a "BlogPosts" resource where it has at least 3 comments and more than 5 likes. Our request would be: `GET /blogposts?q=comments>=3;likes>4`
Supported operators are: `<`, `<=`, `=`, `>=`, and `>`.
Last updated