graphql-engine/docs/graphql/manual/queries/pagination.rst

250 lines
5.3 KiB
ReStructuredText
Raw Normal View History

Paginate query results
======================
.. contents:: Table of contents
:backlinks: none
:depth: 2
:local:
2019-02-06 09:39:36 +03:00
The operators ``limit`` and ``offset`` are used for pagination.
2019-02-06 09:39:36 +03:00
``limit`` specifies the number of rows to retain from the result set and ``offset`` determines which slice to
retain from the results.
You can see the complete specification of the ``limit`` and ``offset`` arguments in the
:ref:`API reference <PaginationExp>`.
The following are examples of different pagination scenarios:
Limit results
-------------
2019-04-19 13:48:18 +03:00
**Example:** Fetch the first 5 authors from the list of all authors:
.. graphiql::
:view_only:
:query:
query {
author(
limit: 5
) {
id
name
}
}
:response:
{
"data": {
"author": [
{
"id": 1,
"name": "Justin"
},
{
"id": 2,
"name": "Beltran"
},
{
"id": 3,
"name": "Sidney"
},
{
"id": 4,
"name": "Anjela"
},
{
"id": 5,
"name": "Amii"
}
]
}
}
Limit results from an offset
----------------------------
2019-04-19 13:48:18 +03:00
**Example:** Fetch 5 authors from the list of all authors, starting with the 6th one:
.. graphiql::
:view_only:
:query:
query {
author(
limit: 5,
offset:5
) {
id
name
}
}
:response:
{
"data": {
"author": [
{
"id": 6,
"name": "Corny"
},
{
"id": 7,
"name": "Berti"
},
{
"id": 8,
"name": "April"
},
{
"id": 9,
"name": "Ninnetta"
},
{
"id": 10,
"name": "Lyndsay"
}
]
}
}
2019-04-19 13:48:18 +03:00
.. _nested_paginate:
Limit results in a nested object
--------------------------------
2019-04-19 13:48:18 +03:00
**Example:** Fetch a list of authors and a list of their first 2 articles:
.. graphiql::
:view_only:
:query:
query {
author {
id
name
articles (
2019-04-19 13:48:18 +03:00
limit: 2
offset: 0
) {
id
title
}
}
}
:response:
{
"data": {
"author": [
{
"id": 1,
"name": "Justin",
"articles": [
{
"id": 15,
"title": "vel dapibus at"
},
{
"id": 16,
"title": "sem duis aliquam"
}
]
},
{
"id": 2,
"name": "Beltran",
"articles": [
{
"id": 2,
"title": "a nibh"
},
{
"id": 9,
"title": "sit amet"
}
]
},
{
"id": 3,
"name": "Sidney",
"articles": [
{
"id": 6,
"title": "sapien ut"
},
{
"id": 11,
"title": "turpis eget"
}
]
},
{
"id": 4,
"name": "Anjela",
"articles": [
{
"id": 1,
"title": "sit amet"
},
{
"id": 3,
"title": "amet justo morbi"
}
]
}
]
}
}
Fetch limited results along with aggregated data on all results *(e.g. total count)* in the same query
------------------------------------------------------------------------------------------------------
Sometimes, some aggregated information on all the data is required along with a subset of data.
E.g. the total count of results can be returned along with a page of results. The count can then be used to calculate
the number of pages based on the limit that is set.
**Example:** Fetch a list of articles where a certain condition is true and get their count. Then limit the number of
articles to return.
.. graphiql::
:view_only:
:query:
query articles ($where: articles_bool_exp!) {
articles_aggregate(where: $where) {
aggregate {
totalCount: count
}
}
articles (where: $where limit: 4) {
id
title
}
}
:response:
{
"data": {
"articles_aggregate": {
"aggregate": {
"totalCount": 8
}
},
"articles": [
{
"id": 33,
"title": "How to make fajitas"
},
{
"id": 31,
"title": "How to make fajitas"
},
{
"id": 32,
"title": "How to make fajitas"
},
{
"id": 2,
"title": "How to climb mount everest"
}
]
}
}
.. admonition:: Caveat
If this needs to be done over :doc:`subscriptions <../subscriptions/index>`, two subscriptions will need to be run
as Hasura follows the `GraphQL spec <https://graphql.github.io/graphql-spec/June2018/#sec-Single-root-field>`_ which
allows for only one root field in a subscription.