Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab_schema.rb « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de4fc1d8e323f0da733ee68ac8c6e1b03d0345f7 (plain)
1
2
3
4
5
6
7
8
class GitlabSchema < GraphQL::Schema
  use BatchLoader::GraphQL
  use Gitlab::Graphql::Authorize
  use Gitlab::Graphql::Present

  query(Types::QueryType)
  # mutation(Types::MutationType)
end