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

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.



410
411
412
# File 'lib/graphql/language/nodes.rb', line 410

def arguments
  @arguments
end

#descriptionObject

Returns the value of attribute description.



410
411
412
# File 'lib/graphql/language/nodes.rb', line 410

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



410
411
412
# File 'lib/graphql/language/nodes.rb', line 410

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



410
411
412
# File 'lib/graphql/language/nodes.rb', line 410

def name
  @name
end

#typeObject

Returns the value of attribute type.



410
411
412
# File 'lib/graphql/language/nodes.rb', line 410

def type
  @type
end

Instance Method Details

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



414
415
416
417
418
419
420
# File 'lib/graphql/language/nodes.rb', line 414

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