module GraphQL::Schema::Member::BaseDSLMethods::ConfigurationExtension

This pushes some configurations down the inheritance tree, in order to prevent repetitive lookups at runtime.

Public Instance Methods

inherited(child_class) click to toggle source
Calls superclass method
# File lib/graphql/schema/member/base_dsl_methods.rb, line 60
def inherited(child_class)
  child_class.introspection(introspection)
  child_class.description(description)
  if overridden_graphql_name
    child_class.graphql_name(overridden_graphql_name)
  end
  super
end