OBJECT

PageInfo

Pagination metadata.

link GraphQL Schema definition

1type PageInfo {
2
3# Limit of the items on one page.
4limit: Int
5
6# Offset of the items' list.
7offset: Int!
8
9# Total number of items.
10count: Int!
11
12# Current page number.
13current: Int
14
15# Next page number. Null if there is no next page.
16next: Int
17
18# Previous page number. Null if there is no previous page.
19previous: Int
20
21# First page number.
22first: Int
23
24# Last (total) page number.
25last: Int
26
27# Sort args.
28sort: [SortArg]!
29
30}