Method: GraphQL::StaticValidation::RequiredInputObjectAttributesArePresentError#to_h
- Defined in:
- lib/graphql/static_validation/rules/required_input_object_attributes_are_present_error.rb
#to_h ⇒ Object
A hash representation of this Message
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/graphql/static_validation/rules/required_input_object_attributes_are_present_error.rb', line 17 def to_h extensions = { "code" => code, "argumentName" => argument_name, "argumentType" => argument_type, "inputObjectType" => input_object_type, } super.merge({ "extensions" => extensions }) end |