2018-09-11 15:08:34 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-23 03:55:14 -04:00
|
|
|
class GitlabSchema < GraphQL::Schema
|
2018-02-23 10:36:40 -05:00
|
|
|
use BatchLoader::GraphQL
|
2018-05-23 03:55:14 -04:00
|
|
|
use Gitlab::Graphql::Authorize
|
|
|
|
use Gitlab::Graphql::Present
|
2018-06-26 12:31:05 -04:00
|
|
|
use Gitlab::Graphql::Connections
|
2017-08-16 09:04:41 -04:00
|
|
|
|
|
|
|
query(Types::QueryType)
|
2018-06-26 12:31:05 -04:00
|
|
|
|
|
|
|
default_max_page_size 100
|
2018-07-10 10:19:45 -04:00
|
|
|
mutation(Types::MutationType)
|
2017-08-16 09:04:41 -04:00
|
|
|
end
|