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.
67 68 69 70 71 72 73 |
# File 'lib/graphql/schema/member/has_arguments.rb', line 67 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 |