Class: GraphQL::Execution::Lookahead
- Inherits:
-
Object
- Object
- GraphQL::Execution::Lookahead
- Defined in:
- lib/graphql/execution/lookahead.rb
Overview
Lookahead creates a uniform interface to inspect the forthcoming selections.
It assumes that the AST it’s working with is valid. (So, it’s safe to use during execution, but if you’re using it directly, be sure to validate first.)
A field may get access to its lookahead by adding extras: [:lookahead]
to its configuration.
Direct Known Subclasses
Defined Under Namespace
Modules: ArgumentHelpers, FieldHelpers Classes: NullLookahead
Constant Summary
- NULL_LOOKAHEAD =
A singleton, so that misses don’t come with overhead.
NullLookahead.new
Instance Attribute Summary collapse
-
#ast_nodes ⇒ Array<GraphQL::Language::Nodes::Field>
readonly
-
#field ⇒ GraphQL::Schema::Field
readonly
Instance Method Summary collapse
-
#initialize(query:, ast_nodes:, field: nil, root_type: nil) ⇒ Lookahead
constructor
A new instance of Lookahead.
-
#inspect ⇒ Object
-
#name ⇒ Symbol
The method name of the field.
-
#selected? ⇒ Boolean
True if this lookahead represents a field that was requested.
-
#selection(field_name, selected_type: @selected_type, arguments: nil) ⇒ GraphQL::Execution::Lookahead
Like #selects?, but can be used for chaining.
-
#selections(arguments: nil) ⇒ Array<GraphQL::Execution::Lookahead>
Like #selection, but for all nodes.
-
#selects?(field_name, arguments: nil) ⇒ Boolean
True if this node has a selection on
field_name
.
Constructor Details
#initialize(query:, ast_nodes:, field: nil, root_type: nil) ⇒ Lookahead
Returns a new instance of Lookahead
34 35 36 37 38 39 40 |
# File 'lib/graphql/execution/lookahead.rb', line 34 def initialize(query:, ast_nodes:, field: nil, root_type: nil) @ast_nodes = ast_nodes.freeze @field = field @root_type = root_type @query = query @selected_type = @field ? @field.type.unwrap : root_type end |
Instance Attribute Details
#ast_nodes ⇒ Array<GraphQL::Language::Nodes::Field> (readonly)
43 44 45 |
# File 'lib/graphql/execution/lookahead.rb', line 43 def ast_nodes @ast_nodes end |
#field ⇒ GraphQL::Schema::Field (readonly)
46 47 48 |
# File 'lib/graphql/execution/lookahead.rb', line 46 def field @field end |
Instance Method Details
#inspect ⇒ Object
133 134 135 |
# File 'lib/graphql/execution/lookahead.rb', line 133 def inspect "#<GraphQL::Execution::Lookahead #{@field ? "@field=#{@field.path.inspect}": "@root_type=#{@root_type}"} @ast_nodes.size=#{@ast_nodes.size}>" end |
#name ⇒ Symbol
The method name of the field. It returns the method_sym of the Lookahead’s field.
129 130 131 |
# File 'lib/graphql/execution/lookahead.rb', line 129 def name @field && @field.original_name end |
#selected? ⇒ Boolean
Returns True if this lookahead represents a field that was requested
65 66 67 |
# File 'lib/graphql/execution/lookahead.rb', line 65 def selected? true end |
#selection(field_name, selected_type: @selected_type, arguments: nil) ⇒ GraphQL::Execution::Lookahead
Like #selects?, but can be used for chaining. It returns a null object (check with #selected?)
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/graphql/execution/lookahead.rb', line 72 def selection(field_name, selected_type: @selected_type, arguments: nil) next_field_name = normalize_name(field_name) next_field_defn = FieldHelpers.get_field(@query.schema, selected_type, next_field_name) if next_field_defn next_nodes = [] @ast_nodes.each do |ast_node| ast_node.selections.each do |selection| find_selected_nodes(selection, next_field_name, next_field_defn, arguments: arguments, matches: next_nodes) end end if next_nodes.any? Lookahead.new(query: @query, ast_nodes: next_nodes, field: next_field_defn) else NULL_LOOKAHEAD end else NULL_LOOKAHEAD end end |
#selections(arguments: nil) ⇒ Array<GraphQL::Execution::Lookahead>
Like #selection, but for all nodes. It returns a list of Lookaheads for all Selections
If arguments:
is provided, each provided key/value will be matched
against the arguments in each selection. This method will filter the selections
if any of the given arguments:
do not match the given selection.
109 110 111 112 113 114 115 116 117 |
# File 'lib/graphql/execution/lookahead.rb', line 109 def selections(arguments: nil) subselections_by_name = {} @ast_nodes.each do |node| find_selections(subselections_by_name, @selected_type, node.selections, arguments) end # Items may be filtered out if `arguments` doesn't match subselections_by_name.values.select(&:selected?) end |
#selects?(field_name, arguments: nil) ⇒ Boolean
True if this node has a selection on field_name
.
If field_name
is a String, it is treated as a GraphQL-style (camelized)
field name and used verbatim. If field_name
is a Symbol, it is
treated as a Ruby-style (underscored) name and camelized before comparing.
If arguments:
is provided, each provided key/value will be matched
against the arguments in the next selection. This method will return false
if any of the given arguments:
are not present and matching in the next selection.
(But, the next selection may contain more than the given arguments.)
60 61 62 |
# File 'lib/graphql/execution/lookahead.rb', line 60 def selects?(field_name, arguments: nil) selection(field_name, arguments: arguments).selected? end |