Class: GraphQL::StaticValidation::OneOfInputObjectsAreValidError

Inherits:
Error
  • Object
show all
Defined in:
lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb

Instance Attribute Summary collapse

Attributes inherited from Error

#message, #nodes, #path

Instance Method Summary collapse

Constructor Details

#initialize(message, path:, nodes:, input_object_type:) ⇒ OneOfInputObjectsAreValidError

Returns a new instance of OneOfInputObjectsAreValidError.



7
8
9
10
# File 'lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb', line 7

def initialize(message, path:, nodes:, input_object_type:)
  super(message, path: path, nodes: nodes)
  @input_object_type = input_object_type
end

Instance Attribute Details

#input_object_typeObject (readonly)

Returns the value of attribute input_object_type.



5
6
7
# File 'lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb', line 5

def input_object_type
  @input_object_type
end

Instance Method Details

#codeObject



24
25
26
# File 'lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb', line 24

def code
  "invalidOneOfInputObject"
end

#to_hObject

A hash representation of this Message



13
14
15
16
17
18
19
20
21
22
# File 'lib/graphql/static_validation/rules/one_of_input_objects_are_valid_error.rb', line 13

def to_h
  extensions = {
    "code" => code,
    "inputObjectType" => input_object_type
  }

  super.merge({
    "extensions" => extensions
  })
end