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

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

Constant Summary

Constants inherited from AbstractNode

AbstractNode::NO_CHILDREN

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#filename

Instance Method Summary collapse

Methods inherited from AbstractNode

#==, #children, #children_method_name, children_of_type, #col, #definition_line, #delete_child, inherited, #initialize_copy, #line, #position, #replace_child, #scalars, #to_query_string

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



635
636
637
# File 'lib/graphql/language/nodes.rb', line 635

def description
  @description
end

Instance Method Details

#merge(new_options) ⇒ Object



646
647
648
649
650
651
# File 'lib/graphql/language/nodes.rb', line 646

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