#Ordering
When fetching multiple entries you can use the orderBy
argument to define the order of the returned records.
You can order results by all System Fields, and any non-relational custom field you define in your model, either ascending, or descending.
#Order by types
Input Type | Description |
---|---|
[fieldName]_ASC | Order results by fieldName ascending. |
[fieldName]_DESC | Order results by fieldName descending. |
ASC
DESC
You can only use one inputType
with orderBy
to order results.
#Nested ordering
You can use the orderBy
with two-way references.
One-way references and union-type relations are not supported.
For example, let's imagine our post has a authors
relation. The same orderBy
rules apply.
{posts {idcreatedAtrelatedPosts(orderBy: createdAt_DESC) {idcreatedAt}}}