graphql 2.0.30 → 2.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/generators/graphql/install/mutation_root_generator.rb +2 -2
- data/lib/generators/graphql/install/templates/base_mutation.erb +2 -0
- data/lib/generators/graphql/install/templates/mutation_type.erb +2 -0
- data/lib/generators/graphql/install_generator.rb +3 -0
- data/lib/generators/graphql/templates/base_argument.erb +2 -0
- data/lib/generators/graphql/templates/base_connection.erb +2 -0
- data/lib/generators/graphql/templates/base_edge.erb +2 -0
- data/lib/generators/graphql/templates/base_enum.erb +2 -0
- data/lib/generators/graphql/templates/base_field.erb +2 -0
- data/lib/generators/graphql/templates/base_input_object.erb +2 -0
- data/lib/generators/graphql/templates/base_interface.erb +2 -0
- data/lib/generators/graphql/templates/base_object.erb +2 -0
- data/lib/generators/graphql/templates/base_resolver.erb +6 -0
- data/lib/generators/graphql/templates/base_scalar.erb +2 -0
- data/lib/generators/graphql/templates/base_union.erb +2 -0
- data/lib/generators/graphql/templates/graphql_controller.erb +2 -0
- data/lib/generators/graphql/templates/loader.erb +2 -0
- data/lib/generators/graphql/templates/mutation.erb +2 -0
- data/lib/generators/graphql/templates/node_type.erb +2 -0
- data/lib/generators/graphql/templates/query_type.erb +2 -0
- data/lib/generators/graphql/templates/schema.erb +5 -0
- data/lib/graphql/analysis/analyzer.rb +89 -0
- data/lib/graphql/analysis/field_usage.rb +82 -0
- data/lib/graphql/analysis/max_query_complexity.rb +20 -0
- data/lib/graphql/analysis/max_query_depth.rb +20 -0
- data/lib/graphql/analysis/query_complexity.rb +183 -0
- data/lib/graphql/analysis/query_depth.rb +58 -0
- data/lib/graphql/analysis/visitor.rb +282 -0
- data/lib/graphql/analysis.rb +92 -1
- data/lib/graphql/backtrace/inspect_result.rb +0 -12
- data/lib/graphql/backtrace/trace.rb +12 -15
- data/lib/graphql/coercion_error.rb +1 -9
- data/lib/graphql/dataloader/async_dataloader.rb +88 -0
- data/lib/graphql/dataloader/null_dataloader.rb +1 -1
- data/lib/graphql/dataloader/request.rb +5 -0
- data/lib/graphql/dataloader/source.rb +11 -3
- data/lib/graphql/dataloader.rb +112 -142
- data/lib/graphql/duration_encoding_error.rb +16 -0
- data/lib/graphql/execution/interpreter/argument_value.rb +5 -1
- data/lib/graphql/execution/interpreter/runtime/graphql_result.rb +175 -0
- data/lib/graphql/execution/interpreter/runtime.rb +163 -365
- data/lib/graphql/execution/interpreter.rb +92 -158
- data/lib/graphql/execution/lookahead.rb +88 -21
- data/lib/graphql/introspection/dynamic_fields.rb +1 -1
- data/lib/graphql/introspection/entry_points.rb +11 -5
- data/lib/graphql/introspection/schema_type.rb +3 -1
- data/lib/graphql/language/block_string.rb +34 -18
- data/lib/graphql/language/definition_slice.rb +1 -1
- data/lib/graphql/language/document_from_schema_definition.rb +38 -38
- data/lib/graphql/language/lexer.rb +305 -193
- data/lib/graphql/language/nodes.rb +113 -66
- data/lib/graphql/language/parser.rb +787 -1986
- data/lib/graphql/language/printer.rb +303 -146
- data/lib/graphql/language/sanitized_printer.rb +20 -22
- data/lib/graphql/language/static_visitor.rb +167 -0
- data/lib/graphql/language/visitor.rb +20 -81
- data/lib/graphql/language.rb +61 -0
- data/lib/graphql/load_application_object_failed_error.rb +5 -1
- data/lib/graphql/pagination/array_connection.rb +6 -6
- data/lib/graphql/pagination/connection.rb +28 -1
- data/lib/graphql/pagination/mongoid_relation_connection.rb +1 -2
- data/lib/graphql/query/context/scoped_context.rb +101 -0
- data/lib/graphql/query/context.rb +66 -131
- data/lib/graphql/query/null_context.rb +4 -11
- data/lib/graphql/query/validation_pipeline.rb +4 -4
- data/lib/graphql/query/variables.rb +3 -3
- data/lib/graphql/query.rb +17 -26
- data/lib/graphql/railtie.rb +9 -6
- data/lib/graphql/rake_task.rb +3 -12
- data/lib/graphql/rubocop/graphql/base_cop.rb +1 -1
- data/lib/graphql/schema/addition.rb +21 -11
- data/lib/graphql/schema/argument.rb +43 -8
- data/lib/graphql/schema/base_64_encoder.rb +3 -5
- data/lib/graphql/schema/build_from_definition.rb +9 -12
- data/lib/graphql/schema/directive/one_of.rb +12 -0
- data/lib/graphql/schema/directive/specified_by.rb +14 -0
- data/lib/graphql/schema/directive.rb +3 -1
- data/lib/graphql/schema/enum.rb +3 -3
- data/lib/graphql/schema/field/connection_extension.rb +1 -15
- data/lib/graphql/schema/field/scope_extension.rb +8 -1
- data/lib/graphql/schema/field.rb +49 -35
- data/lib/graphql/schema/has_single_input_argument.rb +157 -0
- data/lib/graphql/schema/input_object.rb +4 -4
- data/lib/graphql/schema/interface.rb +10 -10
- data/lib/graphql/schema/introspection_system.rb +4 -2
- data/lib/graphql/schema/late_bound_type.rb +4 -0
- data/lib/graphql/schema/list.rb +2 -2
- data/lib/graphql/schema/loader.rb +2 -3
- data/lib/graphql/schema/member/base_dsl_methods.rb +2 -1
- data/lib/graphql/schema/member/has_arguments.rb +63 -73
- data/lib/graphql/schema/member/has_directives.rb +1 -1
- data/lib/graphql/schema/member/has_fields.rb +8 -5
- data/lib/graphql/schema/member/has_interfaces.rb +23 -9
- data/lib/graphql/schema/member/relay_shortcuts.rb +1 -1
- data/lib/graphql/schema/member/scoped.rb +19 -0
- data/lib/graphql/schema/member/type_system_helpers.rb +1 -2
- data/lib/graphql/schema/member/validates_input.rb +3 -3
- data/lib/graphql/schema/mutation.rb +7 -0
- data/lib/graphql/schema/object.rb +8 -0
- data/lib/graphql/schema/printer.rb +8 -7
- data/lib/graphql/schema/relay_classic_mutation.rb +6 -128
- data/lib/graphql/schema/resolver.rb +27 -13
- data/lib/graphql/schema/scalar.rb +3 -3
- data/lib/graphql/schema/subscription.rb +11 -4
- data/lib/graphql/schema/union.rb +1 -1
- data/lib/graphql/schema/unique_within_type.rb +1 -1
- data/lib/graphql/schema/warden.rb +96 -95
- data/lib/graphql/schema.rb +323 -102
- data/lib/graphql/static_validation/all_rules.rb +1 -1
- data/lib/graphql/static_validation/base_visitor.rb +1 -1
- data/lib/graphql/static_validation/literal_validator.rb +2 -3
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +2 -2
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +1 -1
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +2 -2
- data/lib/graphql/static_validation/validation_context.rb +5 -5
- data/lib/graphql/static_validation/validator.rb +3 -0
- data/lib/graphql/static_validation.rb +0 -1
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +4 -3
- data/lib/graphql/subscriptions/broadcast_analyzer.rb +1 -1
- data/lib/graphql/subscriptions/event.rb +8 -2
- data/lib/graphql/subscriptions/serialize.rb +2 -0
- data/lib/graphql/subscriptions.rb +15 -13
- data/lib/graphql/testing/helpers.rb +151 -0
- data/lib/graphql/testing.rb +2 -0
- data/lib/graphql/tracing/appoptics_trace.rb +2 -2
- data/lib/graphql/tracing/appoptics_tracing.rb +2 -2
- data/lib/graphql/tracing/legacy_hooks_trace.rb +74 -0
- data/lib/graphql/tracing/platform_tracing.rb +3 -1
- data/lib/graphql/tracing/{prometheus_tracing → prometheus_trace}/graphql_collector.rb +3 -1
- data/lib/graphql/tracing/prometheus_trace.rb +9 -9
- data/lib/graphql/tracing/sentry_trace.rb +112 -0
- data/lib/graphql/tracing/trace.rb +1 -0
- data/lib/graphql/tracing.rb +3 -1
- data/lib/graphql/type_kinds.rb +1 -1
- data/lib/graphql/types/iso_8601_duration.rb +77 -0
- data/lib/graphql/types/relay/connection_behaviors.rb +32 -2
- data/lib/graphql/types/relay/edge_behaviors.rb +7 -0
- data/lib/graphql/types.rb +1 -0
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +13 -13
- data/readme.md +12 -2
- metadata +33 -26
- data/lib/graphql/analysis/ast/analyzer.rb +0 -84
- data/lib/graphql/analysis/ast/field_usage.rb +0 -57
- data/lib/graphql/analysis/ast/max_query_complexity.rb +0 -22
- data/lib/graphql/analysis/ast/max_query_depth.rb +0 -22
- data/lib/graphql/analysis/ast/query_complexity.rb +0 -230
- data/lib/graphql/analysis/ast/query_depth.rb +0 -55
- data/lib/graphql/analysis/ast/visitor.rb +0 -276
- data/lib/graphql/analysis/ast.rb +0 -81
- data/lib/graphql/deprecation.rb +0 -9
- data/lib/graphql/filter.rb +0 -59
- data/lib/graphql/language/parser.y +0 -560
- data/lib/graphql/schema/base_64_bp.rb +0 -26
- data/lib/graphql/static_validation/type_stack.rb +0 -216
- data/lib/graphql/subscriptions/instrumentation.rb +0 -28
data/lib/graphql/dataloader.rb
CHANGED
|
@@ -27,11 +27,12 @@ module GraphQL
|
|
|
27
27
|
attr_accessor :default_nonblocking
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
NonblockingDataloader = Class.new(self) { self.default_nonblocking = true }
|
|
31
31
|
|
|
32
32
|
def self.use(schema, nonblocking: nil)
|
|
33
33
|
schema.dataloader_class = if nonblocking
|
|
34
|
-
AsyncDataloader
|
|
34
|
+
warn("`nonblocking: true` is deprecated from `GraphQL::Dataloader`, please use `GraphQL::Dataloader::AsyncDataloader` instead. Docs: https://graphql-ruby.org/dataloader/async_dataloader.")
|
|
35
|
+
NonblockingDataloader
|
|
35
36
|
else
|
|
36
37
|
self
|
|
37
38
|
end
|
|
@@ -61,6 +62,37 @@ module GraphQL
|
|
|
61
62
|
@nonblocking
|
|
62
63
|
end
|
|
63
64
|
|
|
65
|
+
# This is called before the fiber is spawned, from the parent context (i.e. from
|
|
66
|
+
# the thread or fiber that it is scheduled from).
|
|
67
|
+
#
|
|
68
|
+
# @return [Hash<Symbol, Object>] Current fiber-local variables
|
|
69
|
+
def get_fiber_variables
|
|
70
|
+
fiber_vars = {}
|
|
71
|
+
Thread.current.keys.each do |fiber_var_key|
|
|
72
|
+
# This variable should be fresh in each new fiber
|
|
73
|
+
if fiber_var_key != :__graphql_runtime_info
|
|
74
|
+
fiber_vars[fiber_var_key] = Thread.current[fiber_var_key]
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
fiber_vars
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
# Set up the fiber variables in a new fiber.
|
|
81
|
+
#
|
|
82
|
+
# This is called within the fiber, right after it is spawned.
|
|
83
|
+
#
|
|
84
|
+
# @param vars [Hash<Symbol, Object>] Fiber-local variables from {get_fiber_variables}
|
|
85
|
+
# @return [void]
|
|
86
|
+
def set_fiber_variables(vars)
|
|
87
|
+
vars.each { |k, v| Thread.current[k] = v }
|
|
88
|
+
nil
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# This method is called when Dataloader is finished using a fiber.
|
|
92
|
+
# Use it to perform any cleanup, such as releasing database connections (if required manually)
|
|
93
|
+
def cleanup_fiber
|
|
94
|
+
end
|
|
95
|
+
|
|
64
96
|
# Get a Source instance from this dataloader, for calling `.load(...)` or `.request(...)` on.
|
|
65
97
|
#
|
|
66
98
|
# @param source_class [Class<GraphQL::Dataloader::Source]
|
|
@@ -104,6 +136,15 @@ module GraphQL
|
|
|
104
136
|
nil
|
|
105
137
|
end
|
|
106
138
|
|
|
139
|
+
# Clear any already-loaded objects from {Source} caches
|
|
140
|
+
# @return [void]
|
|
141
|
+
def clear_cache
|
|
142
|
+
@source_cache.each do |_source_class, batched_sources|
|
|
143
|
+
batched_sources.each_value(&:clear_cache)
|
|
144
|
+
end
|
|
145
|
+
nil
|
|
146
|
+
end
|
|
147
|
+
|
|
107
148
|
# Use a self-contained queue for the work in the block.
|
|
108
149
|
def run_isolated
|
|
109
150
|
prev_queue = @pending_jobs
|
|
@@ -128,124 +169,96 @@ module GraphQL
|
|
|
128
169
|
ensure
|
|
129
170
|
@pending_jobs = prev_queue
|
|
130
171
|
prev_pending_keys.each do |source_instance, pending|
|
|
131
|
-
|
|
172
|
+
pending.each do |key, value|
|
|
173
|
+
if !source_instance.results.key?(key)
|
|
174
|
+
source_instance.pending[key] = value
|
|
175
|
+
end
|
|
176
|
+
end
|
|
132
177
|
end
|
|
133
178
|
end
|
|
134
179
|
|
|
135
|
-
# @api private Move along, move along
|
|
136
180
|
def run
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
# At a high level, the algorithm is:
|
|
141
|
-
#
|
|
142
|
-
# A) Inside Fibers, run jobs from the queue one-by-one
|
|
143
|
-
# - When one of the jobs yields to the dataloader (`Fiber.yield`), then that fiber will pause
|
|
144
|
-
# - In that case, if there are still pending jobs, a new Fiber will be created to run jobs
|
|
145
|
-
# - Continue until all jobs have been _started_ by a Fiber. (Any number of those Fibers may be waiting to be resumed, after their data is loaded)
|
|
146
|
-
# B) Once all known jobs have been run until they are complete or paused for data, run all pending data sources.
|
|
147
|
-
# - Similarly, create a Fiber to consume pending sources and tell them to load their data.
|
|
148
|
-
# - If one of those Fibers pauses, then create a new Fiber to continue working through remaining pending sources.
|
|
149
|
-
# - When a source causes another source to become pending, run the newly-pending source _first_, since it's a dependency of the previous one.
|
|
150
|
-
# C) After all pending sources have been completely loaded (there are no more pending sources), resume any Fibers that were waiting for data.
|
|
151
|
-
# - Those Fibers assume that source caches will have been populated with the data they were waiting for.
|
|
152
|
-
# - Those Fibers may request data from a source again, in which case they will yeilded and be added to a new pending fiber list.
|
|
153
|
-
# D) Once all pending fibers have been resumed once, return to `A` above.
|
|
154
|
-
#
|
|
155
|
-
# For whatever reason, the best implementation I could find was to order the steps `[D, A, B, C]`, with a special case for skipping `D`
|
|
156
|
-
# on the first pass. I just couldn't find a better way to write the loops in a way that was DRY and easy to read.
|
|
157
|
-
#
|
|
158
|
-
pending_fibers = []
|
|
159
|
-
next_fibers = []
|
|
160
|
-
pending_source_fibers = []
|
|
181
|
+
job_fibers = []
|
|
182
|
+
next_job_fibers = []
|
|
183
|
+
source_fibers = []
|
|
161
184
|
next_source_fibers = []
|
|
162
185
|
first_pass = true
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
if first_pass
|
|
186
|
+
manager = spawn_fiber do
|
|
187
|
+
while first_pass || job_fibers.any?
|
|
166
188
|
first_pass = false
|
|
167
|
-
else
|
|
168
|
-
# These fibers were previously waiting for sources to load data,
|
|
169
|
-
# resume them. (They might wait again, in which case, re-enqueue them.)
|
|
170
|
-
resume(f)
|
|
171
|
-
if f.alive?
|
|
172
|
-
next_fibers << f
|
|
173
|
-
end
|
|
174
|
-
end
|
|
175
189
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
190
|
+
while (f = (job_fibers.shift || spawn_job_fiber))
|
|
191
|
+
if f.alive?
|
|
192
|
+
finished = run_fiber(f)
|
|
193
|
+
if !finished
|
|
194
|
+
next_job_fibers << f
|
|
195
|
+
end
|
|
182
196
|
end
|
|
183
|
-
}
|
|
184
|
-
resume(f)
|
|
185
|
-
# In this case, the job yielded. Queue it up to run again after
|
|
186
|
-
# we load whatever it's waiting for.
|
|
187
|
-
if f.alive?
|
|
188
|
-
next_fibers << f
|
|
189
197
|
end
|
|
190
|
-
|
|
198
|
+
join_queues(job_fibers, next_job_fibers)
|
|
191
199
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
if (first_source_fiber = create_source_fiber)
|
|
200
|
-
pending_source_fibers << first_source_fiber
|
|
201
|
-
end
|
|
202
|
-
|
|
203
|
-
while pending_source_fibers.any?
|
|
204
|
-
while (outer_source_fiber = pending_source_fibers.pop)
|
|
205
|
-
resume(outer_source_fiber)
|
|
206
|
-
if outer_source_fiber.alive?
|
|
207
|
-
next_source_fibers << outer_source_fiber
|
|
208
|
-
end
|
|
209
|
-
if (next_source_fiber = create_source_fiber)
|
|
210
|
-
pending_source_fibers << next_source_fiber
|
|
200
|
+
while source_fibers.any? || @source_cache.each_value.any? { |group_sources| group_sources.each_value.any?(&:pending?) }
|
|
201
|
+
while (f = source_fibers.shift || spawn_source_fiber)
|
|
202
|
+
if f.alive?
|
|
203
|
+
finished = run_fiber(f)
|
|
204
|
+
if !finished
|
|
205
|
+
next_source_fibers << f
|
|
206
|
+
end
|
|
211
207
|
end
|
|
212
208
|
end
|
|
213
|
-
join_queues(
|
|
214
|
-
next_source_fibers.clear
|
|
209
|
+
join_queues(source_fibers, next_source_fibers)
|
|
215
210
|
end
|
|
216
|
-
# Move newly-enqueued Fibers on to the list to be resumed.
|
|
217
|
-
# Clear out the list of next-round Fibers, so that
|
|
218
|
-
# any Fibers that pause can be put on it.
|
|
219
|
-
join_queues(pending_fibers, next_fibers)
|
|
220
|
-
next_fibers.clear
|
|
221
211
|
end
|
|
222
212
|
end
|
|
223
213
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
raise "Invariant:
|
|
228
|
-
elsif next_fibers.any?
|
|
229
|
-
raise "Invariant: #{next_fibers.size} next fibers"
|
|
214
|
+
run_fiber(manager)
|
|
215
|
+
|
|
216
|
+
if manager.alive?
|
|
217
|
+
raise "Invariant: Manager fiber didn't terminate properly."
|
|
230
218
|
end
|
|
231
|
-
nil
|
|
232
|
-
end
|
|
233
219
|
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
Fiber.scheduler.run
|
|
237
|
-
next_queue.select!(&:alive?)
|
|
220
|
+
if job_fibers.any?
|
|
221
|
+
raise "Invariant: job fibers should have exited but #{job_fibers.size} remained"
|
|
238
222
|
end
|
|
239
|
-
|
|
223
|
+
if source_fibers.any?
|
|
224
|
+
raise "Invariant: source fibers should have exited but #{source_fibers.size} remained"
|
|
225
|
+
end
|
|
226
|
+
rescue UncaughtThrowError => e
|
|
227
|
+
throw e.tag, e.value
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
def run_fiber(f)
|
|
231
|
+
f.resume
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
def spawn_fiber
|
|
235
|
+
fiber_vars = get_fiber_variables
|
|
236
|
+
Fiber.new(blocking: !@nonblocking) {
|
|
237
|
+
set_fiber_variables(fiber_vars)
|
|
238
|
+
yield
|
|
239
|
+
cleanup_fiber
|
|
240
|
+
}
|
|
240
241
|
end
|
|
241
242
|
|
|
242
243
|
private
|
|
243
244
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
245
|
+
def join_queues(prev_queue, new_queue)
|
|
246
|
+
@nonblocking && Fiber.scheduler.run
|
|
247
|
+
prev_queue.concat(new_queue)
|
|
248
|
+
new_queue.clear
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
def spawn_job_fiber
|
|
252
|
+
if @pending_jobs.any?
|
|
253
|
+
spawn_fiber do
|
|
254
|
+
while job = @pending_jobs.shift
|
|
255
|
+
job.call
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
end
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
def spawn_source_fiber
|
|
249
262
|
pending_sources = nil
|
|
250
263
|
@source_cache.each_value do |source_by_batch_params|
|
|
251
264
|
source_by_batch_params.each_value do |source|
|
|
@@ -257,55 +270,12 @@ module GraphQL
|
|
|
257
270
|
end
|
|
258
271
|
|
|
259
272
|
if pending_sources
|
|
260
|
-
|
|
261
|
-
# For example, if you have sources `[a, b, c]`, and `a` is loaded, then `b` yields to wait for `d`, then
|
|
262
|
-
# the next fiber would be dispatched with `[c, d]`. It would fulfill `c`, then `d`, then eventually
|
|
263
|
-
# the previous fiber would start up again. `c` would no longer be pending, but it would still receive `.run_pending_keys`.
|
|
264
|
-
# That method is short-circuited since it isn't pending any more, but it's still a waste.
|
|
265
|
-
#
|
|
266
|
-
# This design could probably be improved by maintaining a `@pending_sources` queue which is shared by the fibers,
|
|
267
|
-
# similar to `@pending_jobs`. That way, when a fiber is resumed, it would never pick up work that was finished by a different fiber.
|
|
268
|
-
source_fiber = spawn_fiber do
|
|
273
|
+
spawn_fiber do
|
|
269
274
|
pending_sources.each(&:run_pending_keys)
|
|
270
275
|
end
|
|
271
276
|
end
|
|
272
|
-
|
|
273
|
-
source_fiber
|
|
274
|
-
end
|
|
275
|
-
|
|
276
|
-
def resume(fiber)
|
|
277
|
-
fiber.resume
|
|
278
|
-
rescue UncaughtThrowError => e
|
|
279
|
-
throw e.tag, e.value
|
|
280
|
-
end
|
|
281
|
-
|
|
282
|
-
# Copies the thread local vars into the fiber thread local vars. Many
|
|
283
|
-
# gems (such as RequestStore, MiniRacer, etc.) rely on thread local vars
|
|
284
|
-
# to keep track of execution context, and without this they do not
|
|
285
|
-
# behave as expected.
|
|
286
|
-
#
|
|
287
|
-
# @see https://github.com/rmosolgo/graphql-ruby/issues/3449
|
|
288
|
-
def spawn_fiber
|
|
289
|
-
fiber_locals = {}
|
|
290
|
-
|
|
291
|
-
Thread.current.keys.each do |fiber_var_key|
|
|
292
|
-
# This variable should be fresh in each new fiber
|
|
293
|
-
if fiber_var_key != :__graphql_runtime_info
|
|
294
|
-
fiber_locals[fiber_var_key] = Thread.current[fiber_var_key]
|
|
295
|
-
end
|
|
296
|
-
end
|
|
297
|
-
|
|
298
|
-
if @nonblocking
|
|
299
|
-
Fiber.new(blocking: false) do
|
|
300
|
-
fiber_locals.each { |k, v| Thread.current[k] = v }
|
|
301
|
-
yield
|
|
302
|
-
end
|
|
303
|
-
else
|
|
304
|
-
Fiber.new do
|
|
305
|
-
fiber_locals.each { |k, v| Thread.current[k] = v }
|
|
306
|
-
yield
|
|
307
|
-
end
|
|
308
|
-
end
|
|
309
277
|
end
|
|
310
278
|
end
|
|
311
279
|
end
|
|
280
|
+
|
|
281
|
+
require "graphql/dataloader/async_dataloader"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
module GraphQL
|
|
3
|
+
# This error is raised when `Types::ISO8601Duration` is asked to return a value
|
|
4
|
+
# that cannot be parsed as an ISO8601-formatted duration by ActiveSupport::Duration.
|
|
5
|
+
#
|
|
6
|
+
# @see GraphQL::Types::ISO8601Duration which raises this error
|
|
7
|
+
class DurationEncodingError < GraphQL::RuntimeTypeError
|
|
8
|
+
# The value which couldn't be encoded
|
|
9
|
+
attr_reader :duration_value
|
|
10
|
+
|
|
11
|
+
def initialize(value)
|
|
12
|
+
@duration_value = value
|
|
13
|
+
super("Duration cannot be parsed: #{value}. \nDuration must be an ISO8601-formatted duration.")
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -6,15 +6,19 @@ module GraphQL
|
|
|
6
6
|
# A container for metadata regarding arguments present in a GraphQL query.
|
|
7
7
|
# @see Interpreter::Arguments#argument_values for a hash of these objects.
|
|
8
8
|
class ArgumentValue
|
|
9
|
-
def initialize(definition:, value:, default_used:)
|
|
9
|
+
def initialize(definition:, value:, original_value:, default_used:)
|
|
10
10
|
@definition = definition
|
|
11
11
|
@value = value
|
|
12
|
+
@original_value = original_value
|
|
12
13
|
@default_used = default_used
|
|
13
14
|
end
|
|
14
15
|
|
|
15
16
|
# @return [Object] The Ruby-ready value for this Argument
|
|
16
17
|
attr_reader :value
|
|
17
18
|
|
|
19
|
+
# @return [Object] The value of this argument _before_ `prepare` is applied.
|
|
20
|
+
attr_reader :original_value
|
|
21
|
+
|
|
18
22
|
# @return [GraphQL::Schema::Argument] The definition instance for this argument
|
|
19
23
|
attr_reader :definition
|
|
20
24
|
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module GraphQL
|
|
4
|
+
module Execution
|
|
5
|
+
class Interpreter
|
|
6
|
+
class Runtime
|
|
7
|
+
module GraphQLResult
|
|
8
|
+
def initialize(result_name, result_type, application_value, parent_result, is_non_null_in_parent, selections, is_eager)
|
|
9
|
+
@graphql_parent = parent_result
|
|
10
|
+
@graphql_application_value = application_value
|
|
11
|
+
@graphql_result_type = result_type
|
|
12
|
+
if parent_result && parent_result.graphql_dead
|
|
13
|
+
@graphql_dead = true
|
|
14
|
+
end
|
|
15
|
+
@graphql_result_name = result_name
|
|
16
|
+
@graphql_is_non_null_in_parent = is_non_null_in_parent
|
|
17
|
+
# Jump through some hoops to avoid creating this duplicate storage if at all possible.
|
|
18
|
+
@graphql_metadata = nil
|
|
19
|
+
@graphql_selections = selections
|
|
20
|
+
@graphql_is_eager = is_eager
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def path
|
|
24
|
+
@path ||= build_path([])
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def build_path(path_array)
|
|
28
|
+
graphql_result_name && path_array.unshift(graphql_result_name)
|
|
29
|
+
@graphql_parent ? @graphql_parent.build_path(path_array) : path_array
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
attr_accessor :graphql_dead
|
|
33
|
+
attr_reader :graphql_parent, :graphql_result_name, :graphql_is_non_null_in_parent,
|
|
34
|
+
:graphql_application_value, :graphql_result_type, :graphql_selections, :graphql_is_eager
|
|
35
|
+
|
|
36
|
+
# @return [Hash] Plain-Ruby result data (`@graphql_metadata` contains Result wrapper objects)
|
|
37
|
+
attr_accessor :graphql_result_data
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class GraphQLResultHash
|
|
41
|
+
def initialize(_result_name, _result_type, _application_value, _parent_result, _is_non_null_in_parent, _selections, _is_eager)
|
|
42
|
+
super
|
|
43
|
+
@graphql_result_data = {}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
include GraphQLResult
|
|
47
|
+
|
|
48
|
+
attr_accessor :graphql_merged_into
|
|
49
|
+
|
|
50
|
+
def set_leaf(key, value)
|
|
51
|
+
# This is a hack.
|
|
52
|
+
# Basically, this object is merged into the root-level result at some point.
|
|
53
|
+
# But the problem is, some lazies are created whose closures retain reference to _this_
|
|
54
|
+
# object. When those lazies are resolved, they cause an update to this object.
|
|
55
|
+
#
|
|
56
|
+
# In order to return a proper top-level result, we have to update that top-level result object.
|
|
57
|
+
# In order to return a proper partial result (eg, for a directive), we have to update this object, too.
|
|
58
|
+
# Yowza.
|
|
59
|
+
if (t = @graphql_merged_into)
|
|
60
|
+
t.set_leaf(key, value)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
@graphql_result_data[key] = value
|
|
64
|
+
# keep this up-to-date if it's been initialized
|
|
65
|
+
@graphql_metadata && @graphql_metadata[key] = value
|
|
66
|
+
|
|
67
|
+
value
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def set_child_result(key, value)
|
|
71
|
+
if (t = @graphql_merged_into)
|
|
72
|
+
t.set_child_result(key, value)
|
|
73
|
+
end
|
|
74
|
+
@graphql_result_data[key] = value.graphql_result_data
|
|
75
|
+
# If we encounter some part of this response that requires metadata tracking,
|
|
76
|
+
# then create the metadata hash if necessary. It will be kept up-to-date after this.
|
|
77
|
+
(@graphql_metadata ||= @graphql_result_data.dup)[key] = value
|
|
78
|
+
value
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
def delete(key)
|
|
82
|
+
@graphql_metadata && @graphql_metadata.delete(key)
|
|
83
|
+
@graphql_result_data.delete(key)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
def each
|
|
87
|
+
(@graphql_metadata || @graphql_result_data).each { |k, v| yield(k, v) }
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def values
|
|
91
|
+
(@graphql_metadata || @graphql_result_data).values
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def key?(k)
|
|
95
|
+
@graphql_result_data.key?(k)
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def [](k)
|
|
99
|
+
(@graphql_metadata || @graphql_result_data)[k]
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def merge_into(into_result)
|
|
103
|
+
self.each do |key, value|
|
|
104
|
+
case value
|
|
105
|
+
when GraphQLResultHash
|
|
106
|
+
next_into = into_result[key]
|
|
107
|
+
if next_into
|
|
108
|
+
value.merge_into(next_into)
|
|
109
|
+
else
|
|
110
|
+
into_result.set_child_result(key, value)
|
|
111
|
+
end
|
|
112
|
+
when GraphQLResultArray
|
|
113
|
+
# There's no special handling of arrays because currently, there's no way to split the execution
|
|
114
|
+
# of a list over several concurrent flows.
|
|
115
|
+
into_result.set_child_result(key, value)
|
|
116
|
+
else
|
|
117
|
+
# We have to assume that, since this passed the `fields_will_merge` selection,
|
|
118
|
+
# that the old and new values are the same.
|
|
119
|
+
into_result.set_leaf(key, value)
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
@graphql_merged_into = into_result
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class GraphQLResultArray
|
|
127
|
+
include GraphQLResult
|
|
128
|
+
|
|
129
|
+
def initialize(_result_name, _result_type, _application_value, _parent_result, _is_non_null_in_parent, _selections, _is_eager)
|
|
130
|
+
super
|
|
131
|
+
@graphql_result_data = []
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
def graphql_skip_at(index)
|
|
135
|
+
# Mark this index as dead. It's tricky because some indices may already be storing
|
|
136
|
+
# `Lazy`s. So the runtime is still holding indexes _before_ skipping,
|
|
137
|
+
# this object has to coordinate incoming writes to account for any already-skipped indices.
|
|
138
|
+
@skip_indices ||= []
|
|
139
|
+
@skip_indices << index
|
|
140
|
+
offset_by = @skip_indices.count { |skipped_idx| skipped_idx < index}
|
|
141
|
+
delete_at_index = index - offset_by
|
|
142
|
+
@graphql_metadata && @graphql_metadata.delete_at(delete_at_index)
|
|
143
|
+
@graphql_result_data.delete_at(delete_at_index)
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
def set_leaf(idx, value)
|
|
147
|
+
if @skip_indices
|
|
148
|
+
offset_by = @skip_indices.count { |skipped_idx| skipped_idx < idx }
|
|
149
|
+
idx -= offset_by
|
|
150
|
+
end
|
|
151
|
+
@graphql_result_data[idx] = value
|
|
152
|
+
@graphql_metadata && @graphql_metadata[idx] = value
|
|
153
|
+
value
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
def set_child_result(idx, value)
|
|
157
|
+
if @skip_indices
|
|
158
|
+
offset_by = @skip_indices.count { |skipped_idx| skipped_idx < idx }
|
|
159
|
+
idx -= offset_by
|
|
160
|
+
end
|
|
161
|
+
@graphql_result_data[idx] = value.graphql_result_data
|
|
162
|
+
# If we encounter some part of this response that requires metadata tracking,
|
|
163
|
+
# then create the metadata hash if necessary. It will be kept up-to-date after this.
|
|
164
|
+
(@graphql_metadata ||= @graphql_result_data.dup)[idx] = value
|
|
165
|
+
value
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
def values
|
|
169
|
+
(@graphql_metadata || @graphql_result_data)
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
end
|
|
175
|
+
end
|