04b046587f
This adds Keyset pagination to GraphQL lists. PoC for that is pipelines on merge requests and projects. When paginating a list, the base-64 encoded id of the ordering field (in most cases the primary key) can be passed in the `before` or `after` GraphQL argument.
11 lines
257 B
Ruby
11 lines
257 B
Ruby
class GitlabSchema < GraphQL::Schema
|
|
use BatchLoader::GraphQL
|
|
use Gitlab::Graphql::Authorize
|
|
use Gitlab::Graphql::Present
|
|
use Gitlab::Graphql::Connections
|
|
|
|
query(Types::QueryType)
|
|
|
|
default_max_page_size 100
|
|
# mutation(Types::MutationType)
|
|
end
|