Method: GraphQL::Schema::Member::BaseDSLMethods::ConfigurationExtension#inherited

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

#inherited(child_class) ⇒ 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.



60
61
62
63
64
65
66
67
# 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