Class: GraphQL::Language::Nodes::FieldDefinition

Inherits:
AbstractNode
  • Object
show all
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, #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



497
498
499
# File 'lib/graphql/language/nodes.rb', line 497

def arguments
  @arguments
end

#descriptionObject

Returns the value of attribute description



497
498
499
# File 'lib/graphql/language/nodes.rb', line 497

def description
  @description
end

#directivesObject

Returns the value of attribute directives



497
498
499
# File 'lib/graphql/language/nodes.rb', line 497

def directives
  @directives
end

#nameObject

Returns the value of attribute name



497
498
499
# File 'lib/graphql/language/nodes.rb', line 497

def name
  @name
end

#typeObject

Returns the value of attribute type



497
498
499
# File 'lib/graphql/language/nodes.rb', line 497

def type
  @type
end

Instance Method Details

#childrenObject



507
508
509
# File 'lib/graphql/language/nodes.rb', line 507

def children
  arguments + directives
end

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



499
500
501
502
503
504
505
# File 'lib/graphql/language/nodes.rb', line 499

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

#scalarsObject



511
512
513
# File 'lib/graphql/language/nodes.rb', line 511

def scalars
  [name, type]
end