The Goodies
The output schema automatically supports OpenCRUD filtering, pagination and ordering
Filtering
All the scalar entity types enjoy first-class support in the output schema when it comes to filtering. The standard is known as OpenCRUD and dictates what the filtering should look like depending on the field type. For example, if the input schema defines the following type:
the output schema will support the following query:
Pagination
All queries enjoy pagination support by accepting offset
and limit
input parameters. By default, limit
is set to 5.
Ordering
The results can also be ordered by any property with natural ordering. The _DESC
and _ASC
suffixes indicate the direction:
Last updated