@venncity/graphql-pagination-enforce
v1.3.49
Published
![Coverage](https://api.venn.city/production/coverage/badge?branch=master&repository=@venncity/graphql-pagination-enforce)
Downloads
1,248
Readme
Graphql pagination enforce
pagination enforce for graphql queries
All graphql queries must be provided with a first/last parameter.
Max query size - 50.
No default is provided so the parameter must be specified at all times.
e.g:
query {
users(first: 10) {
...
}
}
query {
users(last: 10) {
...
}
}