We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1dd115 commit 0d7e5d3Copy full SHA for 0d7e5d3
graphql/execution/tests/test_executor.py
@@ -119,7 +119,7 @@ def deeper(self):
119
120
def test_merges_parallel_fragments():
121
ast = parse('''
122
- { a, ...FragOne, ...FragTwo }
+ { a, deep {...FragOne, ...FragTwo} }
123
124
fragment FragOne on Type {
125
b
@@ -148,14 +148,15 @@ def test_merges_parallel_fragments():
148
assert result.data == \
149
{
150
'a': 'Apple',
151
- 'b': 'Banana',
152
- 'c': 'Cherry',
153
'deep': {
154
'b': 'Banana',
155
'c': 'Cherry',
156
- 'deeper': {
+ 'deep': {
157
158
- 'c': 'Cherry'}}
+ 'c': 'Cherry',
+ 'deeper': {
+ 'b': 'Banana',
159
+ 'c': 'Cherry'}}}
160
}
161
162
0 commit comments