Class: GraphQL::Language::Nodes::Directive

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

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#eql?, #initialize, #position, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#argumentsObject Also known as: children

Returns the value of attribute arguments



121
122
123
# File 'lib/graphql/language/nodes.rb', line 121

def arguments
  @arguments
end

#nameObject

Returns the value of attribute name



121
122
123
# File 'lib/graphql/language/nodes.rb', line 121

def name
  @name
end

Instance Method Details

#initialize_node(name: nil, arguments: []) ⇒ Object



124
125
126
127
# File 'lib/graphql/language/nodes.rb', line 124

def initialize_node(name: nil, arguments: [])
  @name = name
  @arguments = arguments
end