Class: TinyGQL::Nodes::Field

Inherits:
Node
  • Object
show all
Defined in:
lib/tinygql/nodes.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#start

Instance Method Summary collapse

Methods inherited from Node

#argument?, #boolean_value?, #directive?, #directive_definition?, #document?, #each, #enum_type_definition?, #enum_type_extension?, #enum_value?, #enum_value_definition?, #executable_directive_location?, #field_definition?, #float_value?, #fragment_definition?, #fragment_spread?, #inline_fragment?, #input_object_type_definition?, #input_object_type_extension?, #input_value_definition?, #int_value?, #interface_type_definition?, #interface_type_extension?, #line, #list_type?, #list_value?, #named_type?, #not_null_type?, #null_value?, #object_field?, #object_type_definition?, #object_type_extension?, #object_value?, #operation_definition?, #root_operation_type_definition?, #scalar_type_definition?, #scalar_type_extension?, #schema_definition?, #string_value?, #type_condition?, #type_system_directive_location?, #union_type_definition?, #union_type_extension?, #value?, #variable?, #variable_definition?

Constructor Details

#initialize(pos, aliaz, name, arguments, directives, selection_set) ⇒ Field

Returns a new instance of Field.



276
277
278
279
280
281
282
283
# File 'lib/tinygql/nodes.rb', line 276

def initialize pos, aliaz, name, arguments, directives, selection_set
  super(pos)
  @aliaz = aliaz
  @name = name
  @arguments = arguments
  @directives = directives
  @selection_set = selection_set
end

Instance Attribute Details

#aliazObject (readonly)

Returns the value of attribute aliaz.



274
275
276
# File 'lib/tinygql/nodes.rb', line 274

def aliaz
  @aliaz
end

#argumentsObject (readonly)

Returns the value of attribute arguments.



274
275
276
# File 'lib/tinygql/nodes.rb', line 274

def arguments
  @arguments
end

#directivesObject (readonly)

Returns the value of attribute directives.



274
275
276
# File 'lib/tinygql/nodes.rb', line 274

def directives
  @directives
end

#nameObject (readonly)

Returns the value of attribute name.



274
275
276
# File 'lib/tinygql/nodes.rb', line 274

def name
  @name
end

#selection_setObject (readonly)

Returns the value of attribute selection_set.



274
275
276
# File 'lib/tinygql/nodes.rb', line 274

def selection_set
  @selection_set
end

Instance Method Details

#accept(viz) ⇒ Object



285
286
287
# File 'lib/tinygql/nodes.rb', line 285

def accept viz
  viz.handle_field self
end

#childrenObject



295
296
297
# File 'lib/tinygql/nodes.rb', line 295

def children
  ary = []; ary.concat(arguments) if arguments; ary.concat(directives) if directives; ary.concat(selection_set) if selection_set; ary
end

#field?Boolean

Returns:

  • (Boolean)


293
# File 'lib/tinygql/nodes.rb', line 293

def field?; true; end

#fold(viz, seed) ⇒ Object



289
290
291
# File 'lib/tinygql/nodes.rb', line 289

def fold viz, seed
  viz.handle_field self, seed
end