47b3038434
Partially addresses #47424.
13 lines
286 B
Ruby
13 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|