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

base_interface.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b1f3193136e0b32a6e7d5d0b95b6d6f92b9302e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Types
  module BaseInterface
    include GraphQL::Schema::Interface

    field_class ::Types::BaseField
  end
end