Module: GraphQL::Schema::Member::BaseDSLMethods::ConfigurationExtension Private

Included in:
GraphQL::Schema::Member
Defined in:
lib/graphql/schema/member/base_dsl_methods.rb

Overview

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.

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

Instance Method Summary collapse

Instance Method Details

#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