2019-09-30 21:07:59 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Graphql
|
|
|
|
module CopyFieldDescription
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
# Returns the `description` for property of field `field_name` on type.
|
|
|
|
# This can be used to ensure, for example, that mutation argument descriptions
|
|
|
|
# are always identical to the corresponding query field descriptions.
|
|
|
|
#
|
|
|
|
# E.g.:
|
2021-10-27 15:23:28 +05:30
|
|
|
# argument :name, GraphQL::Types::String, description: copy_field_description(Types::UserType, :name)
|
2019-09-30 21:07:59 +05:30
|
|
|
def copy_field_description(type, field_name)
|
|
|
|
type.fields[field_name.to_s.camelize(:lower)].description
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|