summaryrefslogtreecommitdiff
path: root/app/graphql/gitlab_schema.rb
blob: d9f9129d08a200c7cf43945ca5a6af5423660a7c (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