summaryrefslogtreecommitdiff
path: root/app/graphql/types/base_object.rb
blob: 82b78abd5739489735469fdabe2390d50d6a623e (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  class BaseObject < GraphQL::Schema::Object
    prepend Gitlab::Graphql::Present
    prepend Gitlab::Graphql::ExposePermissions

    field_class Types::BaseField
  end
end