summaryrefslogtreecommitdiff
path: root/app/graphql/gitlab_schema.rb
blob: 8755a1a62e7f4c26082588af09cec5e1f8d5efd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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