-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathdebug_test.exs
More file actions
61 lines (49 loc) · 1.45 KB
/
debug_test.exs
File metadata and controls
61 lines (49 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env elixir
# Simple script to debug directive processing
defmodule DebugSchema do
use Absinthe.Schema
query do
field :test, :string do
resolve fn _, _ -> {:ok, "test"} end
end
end
end
# Test query with defer directive
query = """
{
test
... @defer(label: "test") {
test
}
}
"""
IO.puts("Testing defer directive processing...")
# Skip standard pipeline test - it crashes on defer flags
# This is expected behavior - the standard pipeline can't handle defer flags
IO.puts("\n=== Standard Pipeline ===")
IO.puts("Skipping standard pipeline - defer flags require streaming resolution")
# Test with incremental pipeline
IO.puts("\n=== Incremental Pipeline ===")
pipeline_modifier = fn pipeline, _options ->
IO.puts("Pipeline before modification:")
IO.inspect(pipeline |> Enum.map(fn
{phase, _opts} -> phase
phase when is_atom(phase) -> phase
phase -> inspect(phase)
end), label: "Pipeline phases")
modified = Absinthe.Pipeline.Incremental.enable(pipeline,
enabled: true,
enable_defer: true,
enable_stream: true
)
IO.puts("Pipeline after modification:")
IO.inspect(modified |> Enum.map(fn
{phase, _opts} -> phase
phase when is_atom(phase) -> phase
phase -> inspect(phase)
end), label: "Modified pipeline phases")
modified
end
result2 = Absinthe.run(query, DebugSchema, pipeline_modifier: pipeline_modifier)
IO.inspect(result2, label: "Incremental result")
IO.puts("\nDone!")