2018-09-11 14:11:24 +03:00
|
|
|
Sort query results
|
|
|
|
==================
|
2018-12-03 15:12:24 +03:00
|
|
|
|
|
|
|
.. contents:: Table of contents
|
|
|
|
:backlinks: none
|
|
|
|
:depth: 1
|
|
|
|
:local:
|
|
|
|
|
2018-10-31 16:49:29 +03:00
|
|
|
Results from your query can be sorted by using the :ref:`order_by <OrderByExp>` argument. The argument can be used to sort nested
|
2018-09-11 14:11:24 +03:00
|
|
|
objects too.
|
|
|
|
|
2018-10-26 14:57:33 +03:00
|
|
|
The sort order (ascending vs. descending) is set by specifying ``asc`` or ``desc``
|
|
|
|
enum value for the column name in the ``order_by`` input object e.g. ``{name: desc}``.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-11-22 07:58:18 +03:00
|
|
|
By default, for ascending ordering ``null`` values are returned at the end of the results and for descending ordering ``null``
|
|
|
|
values are returned at the start of the results. ``null`` values can be fetched first on ascending ordering by specifying
|
|
|
|
``asc_nulls_first`` and last on descending ordering by specifying ``desc_nulls_last`` enum value e.g. ``{name: desc_nulls_last}``.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
2018-10-26 14:57:33 +03:00
|
|
|
The ``order_by`` argument takes an array of objects to allow sorting by multiple columns.
|
|
|
|
|
|
|
|
.. code-block:: graphql
|
|
|
|
|
|
|
|
article (
|
|
|
|
order_by: [article_order_by!]
|
|
|
|
): [article]!
|
|
|
|
|
|
|
|
#order by type for "article" table
|
|
|
|
input article_order_by {
|
|
|
|
id: order_by
|
|
|
|
title: order_by
|
|
|
|
content: order_by
|
|
|
|
author_id: order_by
|
|
|
|
#order by using "author" object relationship columns
|
|
|
|
author: author_order_by
|
|
|
|
}
|
|
|
|
|
|
|
|
#the order_by enum type
|
|
|
|
enum order_by {
|
2018-11-22 07:58:18 +03:00
|
|
|
#in the ascending order, nulls last
|
2018-10-26 14:57:33 +03:00
|
|
|
asc
|
2018-11-22 07:58:18 +03:00
|
|
|
#in the ascending order, nulls last
|
|
|
|
asc_nulls_last
|
2018-10-26 14:57:33 +03:00
|
|
|
#in the ascending order, nulls first
|
|
|
|
asc_nulls_first
|
|
|
|
#in the descending order, nulls first
|
2018-11-22 07:58:18 +03:00
|
|
|
desc
|
|
|
|
#in the descending order, nulls first
|
2018-10-26 14:57:33 +03:00
|
|
|
desc_nulls_first
|
2018-11-22 07:58:18 +03:00
|
|
|
#in the descending order, nulls last
|
|
|
|
desc_nulls_last
|
2018-10-26 14:57:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.. Note::
|
|
|
|
Only columns from **object** relationships are allowed for sorting.
|
2018-09-11 14:11:24 +03:00
|
|
|
|
|
|
|
The following are example queries for different sorting use cases:
|
|
|
|
|
2018-12-03 15:12:24 +03:00
|
|
|
Sorting objects
|
|
|
|
---------------
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
Fetch list of authors sorted by their names in an ascending order:
|
|
|
|
|
|
|
|
.. graphiql::
|
|
|
|
:view_only:
|
|
|
|
:query:
|
|
|
|
query {
|
|
|
|
author(
|
2018-10-26 14:57:33 +03:00
|
|
|
order_by: {name: asc}
|
2018-09-11 14:11:24 +03:00
|
|
|
) {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:response:
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"author": [
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Amii"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
|
|
|
"name": "Anjela"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 8,
|
|
|
|
"name": "April"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "Beltran"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 7,
|
|
|
|
"name": "Berti"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 6,
|
|
|
|
"name": "Corny"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:12:24 +03:00
|
|
|
Sorting nested objects
|
|
|
|
----------------------
|
2018-09-11 14:11:24 +03:00
|
|
|
Fetch a list of authors sorted by their names with a list of their articles that is sorted by their rating:
|
|
|
|
|
|
|
|
.. graphiql::
|
|
|
|
:view_only:
|
|
|
|
:query:
|
|
|
|
query {
|
2018-10-26 14:57:33 +03:00
|
|
|
author(order_by: {name: asc}) {
|
2018-09-11 14:11:24 +03:00
|
|
|
id
|
|
|
|
name
|
2018-10-26 14:57:33 +03:00
|
|
|
articles(order_by: {rating: desc}) {
|
2018-09-11 14:11:24 +03:00
|
|
|
id
|
|
|
|
title
|
|
|
|
rating
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:response:
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"author": [
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "Amii",
|
|
|
|
"articles": [
|
|
|
|
{
|
|
|
|
"rating": 5,
|
|
|
|
"id": 17,
|
|
|
|
"title": "montes nascetur ridiculus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"rating": 3,
|
|
|
|
"id": 12,
|
|
|
|
"title": "volutpat quam pede"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"rating": 2,
|
|
|
|
"id": 4,
|
|
|
|
"title": "vestibulum ac est"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 4,
|
|
|
|
"name": "Anjela",
|
|
|
|
"articles": [
|
|
|
|
{
|
|
|
|
"rating": 4,
|
|
|
|
"id": 3,
|
|
|
|
"title": "amet justo morbi"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"rating": 1,
|
|
|
|
"id": 1,
|
|
|
|
"title": "sit amet"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 8,
|
|
|
|
"name": "April",
|
|
|
|
"articles": [
|
|
|
|
{
|
|
|
|
"rating": 4,
|
|
|
|
"id": 13,
|
|
|
|
"title": "vulputate elementum"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"rating": 2,
|
|
|
|
"id": 20,
|
|
|
|
"title": "eu nibh"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-03 15:12:24 +03:00
|
|
|
Sorting objects based on nested object's fields
|
|
|
|
-----------------------------------------------
|
2018-10-26 14:57:33 +03:00
|
|
|
Fetch a list of articles that is sorted by their author's id (descending).
|
|
|
|
Only columns in object relationships are allowed:
|
|
|
|
|
|
|
|
.. graphiql::
|
|
|
|
:view_only:
|
|
|
|
:query:
|
|
|
|
query {
|
|
|
|
article(
|
|
|
|
order_by: {author: {id: desc}}
|
|
|
|
) {
|
|
|
|
id
|
|
|
|
rating
|
|
|
|
published_on
|
|
|
|
author {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:response:
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"article": [
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"title": "Article 3",
|
|
|
|
"content": "Sample article content 3",
|
|
|
|
"author": {
|
|
|
|
"id": 2,
|
|
|
|
"name": "Author 2"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"title": "Article 1",
|
|
|
|
"content": "Sample article content 1",
|
|
|
|
"author": {
|
|
|
|
"id": 1,
|
|
|
|
"name": "Author 1"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"title": "Article 2",
|
|
|
|
"content": "Sample article content 2",
|
|
|
|
"author": {
|
|
|
|
"id": 1,
|
|
|
|
"name": "Author 1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 14:11:24 +03:00
|
|
|
Sorting by multiple fields
|
|
|
|
--------------------------
|
|
|
|
Fetch a list of articles that is sorted by their rating (descending) and then on their published date (ascending with
|
|
|
|
nulls first):
|
|
|
|
|
|
|
|
.. graphiql::
|
|
|
|
:view_only:
|
|
|
|
:query:
|
|
|
|
query {
|
|
|
|
article(
|
2018-10-26 14:57:33 +03:00
|
|
|
order_by: [{rating: desc}, {published_on: asc_nulls_first}]
|
2018-09-11 14:11:24 +03:00
|
|
|
) {
|
|
|
|
id
|
|
|
|
rating
|
|
|
|
published_on
|
|
|
|
}
|
|
|
|
}
|
|
|
|
:response:
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"article": [
|
|
|
|
{
|
|
|
|
"id": 17,
|
|
|
|
"rating": 5,
|
|
|
|
"published_on": null
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 14,
|
|
|
|
"rating": 4,
|
|
|
|
"published_on": null
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 7,
|
|
|
|
"rating": 4,
|
|
|
|
"published_on": "2016-07-09"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"rating": 4,
|
|
|
|
"published_on": "2017-05-26"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2018-10-26 14:57:33 +03:00
|
|
|
}
|