Method: GraphQL::Testing::Helpers::TypeNotDefinedError#initialize

Defined in:
lib/graphql/testing/helpers.rb

#initialize(type_name:) ⇒ TypeNotDefinedError



29
30
31
32
# File 'lib/graphql/testing/helpers.rb', line 29

def initialize(type_name:)
  message = "No type named `#{type_name}` is defined; choose another type name or define this type."
  super(message)
end