class GraphQL::Schema::Validator::ValidationFailedError
Attributes
errors[R]
Public Class Methods
new(errors:)
click to toggle source
Calls superclass method
GraphQL::ExecutionError::new
# File lib/graphql/schema/validator.rb, line 110 def initialize(errors:) @errors = errors super(errors.join(", ")) end