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, #initialize, #position, #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.



88
89
90
# File 'lib/graphql/language/nodes.rb', line 88

def arguments
  @arguments
end

#nameObject

Returns the value of attribute name.



88
89
90
# File 'lib/graphql/language/nodes.rb', line 88

def name
  @name
end

Instance Method Details

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



91
92
93
94
# File 'lib/graphql/language/nodes.rb', line 91

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