Class: GraphQL::Language::Nodes::Field
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::Field
- Defined in:
- lib/graphql/language/nodes.rb
Overview
A single selection in a GraphQL query.
Instance Attribute Summary collapse
-
#alias ⇒ Object
Returns the value of attribute alias.
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#name ⇒ Object
Returns the value of attribute name.
-
#selections ⇒ Array<Nodes::Field>
Selections on this object (or empty array if this is a scalar field).
Attributes inherited from AbstractNode
Instance Method Summary collapse
Methods inherited from AbstractNode
child_attributes, #children, #eql?, inherited, #initialize, #position, scalar_attributes, #scalars, #to_query_string
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#alias ⇒ Object
Returns the value of attribute alias.
174 175 176 |
# File 'lib/graphql/language/nodes.rb', line 174 def alias @alias end |
#arguments ⇒ Object
Returns the value of attribute arguments.
174 175 176 |
# File 'lib/graphql/language/nodes.rb', line 174 def arguments @arguments end |
#directives ⇒ Object
Returns the value of attribute directives.
174 175 176 |
# File 'lib/graphql/language/nodes.rb', line 174 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
174 175 176 |
# File 'lib/graphql/language/nodes.rb', line 174 def name @name end |
#selections ⇒ Array<Nodes::Field>
Returns Selections on this object (or empty array if this is a scalar field).
181 182 183 |
# File 'lib/graphql/language/nodes.rb', line 181 def selections @selections end |
Instance Method Details
#initialize_node(name: nil, arguments: [], directives: [], selections: [], **kwargs) ⇒ Object
181 182 183 184 185 186 187 188 |
# File 'lib/graphql/language/nodes.rb', line 181 def initialize_node(name: nil, arguments: [], directives: [], selections: [], **kwargs) @name = name # oops, alias is a keyword: @alias = kwargs.fetch(:alias, nil) @arguments = arguments @directives = directives @selections = selections end |