Module: GraphQL::Schema::Member::HasArguments::ArgumentClassAccessor Private

Defined in:
lib/graphql/schema/member/has_arguments.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#argument_class(new_arg_class = nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



43
44
45
46
47
48
49
# File 'lib/graphql/schema/member/has_arguments.rb', line 43

def argument_class(new_arg_class = nil)
  if new_arg_class
    @argument_class = new_arg_class
  else
    @argument_class || (superclass.respond_to?(:argument_class) ? superclass.argument_class : GraphQL::Schema::Argument)
  end
end