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

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

module Types
  class BaseInputObject < GraphQL::Schema::InputObject
    prepend Gitlab::Graphql::CopyFieldDescription

    argument_class ::Types::BaseArgument
  end
end