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

Inherits:
AbstractNode
  • Object
show all
Includes:
DefinitionNode
Defined in:
lib/graphql/language/nodes.rb

Constant Summary

Constants inherited from AbstractNode

AbstractNode::NO_CHILDREN

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#==, #children, #children_method_name, #delete_child, inherited, #initialize, #initialize_copy, #position, #replace_child, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



585
586
587
# File 'lib/graphql/language/nodes.rb', line 585

def description
  @description
end

Instance Method Details

#merge(new_options) ⇒ Object



596
597
598
599
600
601
# File 'lib/graphql/language/nodes.rb', line 596

def merge(new_options)
  if (f = new_options.delete(:fields))
    new_options[:arguments] = f
  end
  super
end