Class: GraphQL::Language::Nodes::Field

Inherits:
AbstractNode show all
Defined in:
lib/graphql/language/nodes.rb

Overview

A single selection in a GraphQL query.

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

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

#aliasObject

Returns the value of attribute alias.



190
191
192
# File 'lib/graphql/language/nodes.rb', line 190

def alias
  @alias
end

#argumentsObject

Returns the value of attribute arguments.



190
191
192
# File 'lib/graphql/language/nodes.rb', line 190

def arguments
  @arguments
end

#directivesObject

Returns the value of attribute directives.



190
191
192
# File 'lib/graphql/language/nodes.rb', line 190

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



190
191
192
# File 'lib/graphql/language/nodes.rb', line 190

def name
  @name
end

#selectionsArray<Nodes::Field>

Returns Selections on this object (or empty array if this is a scalar field).

Returns:

  • (Array<Nodes::Field>)

    Selections on this object (or empty array if this is a scalar field)



197
198
199
# File 'lib/graphql/language/nodes.rb', line 197

def selections
  @selections
end

Instance Method Details

#initialize_node(name: nil, arguments: [], directives: [], selections: [], **kwargs) ⇒ Object



197
198
199
200
201
202
203
204
# File 'lib/graphql/language/nodes.rb', line 197

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