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: 90a29b0cfb8bd14cc62fe4188c650a83897d9ef3 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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