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.
NOTE: Lookahead for typed fragments (eg node { ... on Thing { ... } }
)
hasn't been implemented yet. It's possible, I just didn't need it yet.
Feel free to open a PR or an issue if you want to add it.
Direct Known Subclasses
Defined Under Namespace
Modules: ArgumentHelpers, FieldHelpers Classes: NullLookahead
Constant Summary collapse
- NULL_LOOKAHEAD =
A singleton, so that misses don't come with overhead.
NullLookahead.new
Instance Method Summary collapse
-
#initialize(query:, ast_nodes:, field: nil, root_type: nil) ⇒ Lookahead
constructor
A new instance of Lookahead.
-
#name ⇒ Symbol
The method name of the field.
-
#selected? ⇒ Boolean
True if this lookahead represents a field that was requested.
-
#selection(field_name, 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.
38 39 40 41 42 43 |
# File 'lib/graphql/execution/lookahead.rb', line 38 def initialize(query:, ast_nodes:, field: nil, root_type: nil) @ast_nodes = ast_nodes @field = field @root_type = root_type @query = query end |
Instance Method Details
#name ⇒ Symbol
The method name of the field. It returns the method_sym of the Lookahead's field.
134 135 136 137 138 |
# File 'lib/graphql/execution/lookahead.rb', line 134 def name return unless @field.respond_to?(:original_name) @field.original_name end |
#selected? ⇒ Boolean
Returns True if this lookahead represents a field that was requested.
62 63 64 |
# File 'lib/graphql/execution/lookahead.rb', line 62 def selected? true end |
#selection(field_name, arguments: nil) ⇒ GraphQL::Execution::Lookahead
Like #selects?, but can be used for chaining. It returns a null object (check with #selected?)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/graphql/execution/lookahead.rb', line 69 def selection(field_name, arguments: nil) next_field_name = normalize_name(field_name) next_field_owner = if @field @field.type.unwrap else @root_type end next_field_defn = FieldHelpers.get_field(@query.schema, next_field_owner, 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.
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/graphql/execution/lookahead.rb', line 112 def selections(arguments: nil) subselections_by_name = {} @ast_nodes.each do |node| node.selections.each do |subselection| subselections_by_name[subselection.name] ||= selection(subselection.name, arguments: arguments) end 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.)
57 58 59 |
# File 'lib/graphql/execution/lookahead.rb', line 57 def selects?(field_name, arguments: nil) selection(field_name, arguments: arguments).selected? end |