Class: GraphQL::Language::Nodes::InlineFragment
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::InlineFragment
- Defined in:
- lib/graphql/language/nodes.rb
Overview
An unnamed fragment, defined directly in the query with ... { }
Instance Attribute Summary collapse
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#selections ⇒ Object
Returns the value of attribute selections.
-
#type ⇒ String?
Name of the type this fragment applies to, or
nil
if this fragment applies to any type.
Attributes inherited from AbstractNode
Instance Method Summary collapse
- #children ⇒ Object
- #initialize_node(type: nil, directives: [], selections: []) ⇒ Object
- #scalars ⇒ Object
Methods inherited from AbstractNode
#eql?, #initialize, #position, #to_query_string
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#directives ⇒ Object
Returns the value of attribute directives.
256 257 258 |
# File 'lib/graphql/language/nodes.rb', line 256 def directives @directives end |
#selections ⇒ Object
Returns the value of attribute selections.
256 257 258 |
# File 'lib/graphql/language/nodes.rb', line 256 def selections @selections end |
#type ⇒ String?
Returns Name of the type this fragment applies to, or nil
if this fragment applies to any type.
261 262 263 |
# File 'lib/graphql/language/nodes.rb', line 261 def type @type end |
Instance Method Details
#children ⇒ Object
267 268 269 |
# File 'lib/graphql/language/nodes.rb', line 267 def children directives + selections end |
#initialize_node(type: nil, directives: [], selections: []) ⇒ Object
261 262 263 264 265 |
# File 'lib/graphql/language/nodes.rb', line 261 def initialize_node(type: nil, directives: [], selections: []) @type = type @directives = directives @selections = selections end |
#scalars ⇒ Object
271 272 273 |
# File 'lib/graphql/language/nodes.rb', line 271 def scalars [type] end |