Method: GraphQL::Schema::Member::HasArguments#arguments_statically_coercible?

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

#arguments_statically_coercible?Boolean

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.

Returns:



329
330
331
332
333
334
335
# File 'lib/graphql/schema/member/has_arguments.rb', line 329

def arguments_statically_coercible?
  if defined?(@arguments_statically_coercible) && !@arguments_statically_coercible.nil?
    @arguments_statically_coercible
  else
    @arguments_statically_coercible = all_argument_definitions.all?(&:statically_coercible?)
  end
end