Exception: GraphQL::Schema::Validator::ValidationFailedError

Inherits:
ExecutionError show all
Defined in:
lib/graphql/schema/validator.rb

Instance Attribute Summary collapse

Attributes inherited from ExecutionError

#ast_node, #extensions, #options, #path

Instance Method Summary collapse

Methods inherited from ExecutionError

#to_h

Constructor Details

#initialize(errors:) ⇒ ValidationFailedError

Returns a new instance of ValidationFailedError.



113
114
115
116
# File 'lib/graphql/schema/validator.rb', line 113

def initialize(errors:)
  @errors = errors
  super(errors.join(", "))
end

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors.



111
112
113
# File 'lib/graphql/schema/validator.rb', line 111

def errors
  @errors
end