2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
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
|
2018-11-18 11:00:15 +05:30
|
|
|
mutation(Types::MutationType)
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|