Class: GraphQL::Language::Nodes::Document

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

Overview

This is the AST root for normal queries

Examples:

Deriving a document by parsing a string

document = GraphQL.parse(query_string)

Creating a string from a document

document.to_query_string
# { ... }

Creating a custom string from a document

class VariableScrubber < GraphQL::Language::Printer
  def print_argument(arg)
    "#{arg.name}: <HIDDEN>"
  end
end

document.to_query_string(printer: VariableSrubber.new)

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, #delete_child, #eql?, inherited, #initialize, #initialize_copy, #merge, #position, #replace_child, #scalars, #to_query_string, #visit_method

Constructor Details

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

Instance Attribute Details

#definitionsArray<OperationDefinition, FragmentDefinition>

Returns top-level GraphQL units: operations or fragments

Returns:



339
340
341
# File 'lib/graphql/language/nodes.rb', line 339

def slice_definition(name)
  GraphQL::Language::DefinitionSlice.slice(self, name)
end

Instance Method Details

#slice_definition(name) ⇒ Object



339
340
341
# File 'lib/graphql/language/nodes.rb', line 339

def slice_definition(name)
  GraphQL::Language::DefinitionSlice.slice(self, name)
end