Class: GraphQL::StaticValidation::FragmentsAreNamedError
- Defined in:
- lib/graphql/static_validation/rules/fragments_are_named_error.rb
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#code ⇒ Object
-
#initialize(message, path: nil, nodes: []) ⇒ FragmentsAreNamedError
constructor
A new instance of FragmentsAreNamedError.
-
#to_h ⇒ Object
A hash representation of this Message.
Constructor Details
#initialize(message, path: nil, nodes: []) ⇒ FragmentsAreNamedError
Returns a new instance of FragmentsAreNamedError.
6 7 8 |
# File 'lib/graphql/static_validation/rules/fragments_are_named_error.rb', line 6 def initialize(, path: nil, nodes: []) super(, path: path, nodes: nodes) end |
Instance Method Details
#code ⇒ Object
21 22 23 |
# File 'lib/graphql/static_validation/rules/fragments_are_named_error.rb', line 21 def code "anonymousFragment" end |
#to_h ⇒ Object
A hash representation of this Message
11 12 13 14 15 16 17 18 19 |
# File 'lib/graphql/static_validation/rules/fragments_are_named_error.rb', line 11 def to_h extensions = { "code" => code, } super.merge({ "extensions" => extensions }) end |