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



387
388
389
# File 'lib/graphql/language/nodes.rb', line 387

def arguments
  @arguments
end

#directivesObject

Returns the value of attribute directives.



387
388
389
# File 'lib/graphql/language/nodes.rb', line 387

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



387
388
389
# File 'lib/graphql/language/nodes.rb', line 387

def name
  @name
end

#typeObject

Returns the value of attribute type.



387
388
389
# File 'lib/graphql/language/nodes.rb', line 387

def type
  @type
end

Instance Method Details

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



391
392
393
394
395
396
# File 'lib/graphql/language/nodes.rb', line 391

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