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

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

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #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

#argumentsObject

Returns the value of attribute arguments.



115
116
117
# File 'lib/graphql/language/nodes.rb', line 115

def arguments
  @arguments
end

#nameObject

Returns the value of attribute name.



115
116
117
# File 'lib/graphql/language/nodes.rb', line 115

def name
  @name
end

Instance Method Details

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



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

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