summaryrefslogtreecommitdiff
path: root/app/graphql/gitlab_schema.rb
blob: ac75c4bf2e3e790c827b0d9f61c5d5fbe7bad503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Gitlab::Graphql::Authorize.register!
Gitlab::Graphql::Present.register!

GitlabSchema = GraphQL::Schema.define do
  use BatchLoader::GraphQL

  enable_preloading
  enable_authorization
  enable_presenting

  query(Types::QueryType)
end