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

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

module Types
  class BaseArgument < GraphQL::Schema::Argument
    include GitlabStyleDeprecations

    def initialize(*args, **kwargs, &block)
      kwargs = gitlab_deprecation(kwargs)

      super(*args, **kwargs, &block)
    end
  end
end