Pagination in GraphQL
We have slicing via limit: INT, but we do not have the ability to specify an offset. Are there plans to add this soon?
GraphQL Documentation actually specifies their pagination terms as follows:
first: int
offset: int
after: _id
Are there plans to implement this at all?

-
Guillaume commented
ETA for this feature? We are in 2022 and it is difficult to understand why, such an important and critical feature, is not yet available.
-
I Putu Yoga commented
AWS AppSync has this. That would be great if Realm GraphQL supports this.
-
Petru commented
Would be great if this would be offered out of the box as it is a common pattern/solution in many use cases.
-
Colin commented
This is business critical for us as well first and offset would work well with most graphql clients. Here is the article on pagination from GraphQL Docs https://graphql.org/learn/pagination/
-
Yuriy commented
Hi Quinton,
I have been advised of a workaround including writing GraphQL Custom Resolver and function which accepts find and limit parameters.
However I still believe this has to be out of the box feature.
Regards