Query list of objects /w sorting, filters and pagination.
Paging
If continuation
token is present, that means there is more paged data. You can use this token as the continuation
token in subsequent requests to page through the data.
Filtering
You can add any number of filter expressions to query your data. For example, the query parameter profession__eq=mathematician
will only return users who are mathematicians. See the full list of valid filter expressions.
Sorting
Results can be sorted by using a list of columns to the order_by
parameter. Use "-column"
for DESC
sort. For example, order_by=last_name&order_by=-age
will sort by last_name ASC
then by age DESC
Sorting with multiple pages
When using
order_by
please note that Meya doesn't guarantee ordering if there are more than 1 page of results.
No results found
If there are no users who match the query, results: []
will be returned with status code 200
.