Skip to content

Commit 6f02464

Browse files
PascalSennmichaelstaib
andauthoredNov 11, 2021
Fixed validation error on union lists (#4331)
Co-authored-by: Michael Staib <michael@chillicream.com>
1 parent 950c9bd commit 6f02464

5 files changed

+121
-35
lines changed
 

‎src/HotChocolate/Core/src/Validation/Rules/FieldVisitor.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ protected override ISyntaxVisitorAction Enter(
127127
IDocumentValidatorContext context)
128128
{
129129
if (context.Types.TryPeek(out IType type) &&
130-
type.NamedType().Kind == TypeKind.Union &&
130+
type.NamedType() is { Kind: TypeKind.Union } unionType &&
131131
HasFields(node))
132132
{
133-
context.Errors.Add(context.UnionFieldError(node, (UnionType)type));
133+
context.Errors.Add(context.UnionFieldError(node, (UnionType)unionType));
134134
return Skip;
135135
}
136136

‎src/HotChocolate/Core/test/Validation.Tests/FieldsOnCorrectTypeRule.cs

+61-31
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ fragment objectFieldSelection on Dog {
1919
__typename
2020
name
2121
}
22-
22+
2323
query {
2424
dog {
2525
...objectFieldSelection
26-
}
26+
}
2727
}
2828
");
2929
}
@@ -36,11 +36,11 @@ fragment aliasedObjectFieldSelection on Dog {
3636
tn : __typename
3737
otherName : name
3838
}
39-
39+
4040
query {
4141
dog {
4242
...aliasedObjectFieldSelection
43-
}
43+
}
4444
}
4545
");
4646
}
@@ -52,11 +52,11 @@ public void GoodInterfacesObjectFieldSelection()
5252
fragment interfaceFieldSelection on Pet {
5353
otherName : name
5454
}
55-
55+
5656
query {
5757
pet {
5858
...interfaceFieldSelection
59-
}
59+
}
6060
}
6161
");
6262
}
@@ -75,7 +75,7 @@ ... on Cat {
7575
query {
7676
pet {
7777
...typeKnownAgain
78-
}
78+
}
7979
}
8080
");
8181
}
@@ -87,11 +87,11 @@ public void BadFieldNotDefinedOnFragement()
8787
fragment fieldNotDefined on Dog {
8888
meowVolume
8989
}
90-
90+
9191
query {
9292
dog {
9393
...fieldNotDefined
94-
}
94+
}
9595
}
9696
");
9797
}
@@ -105,11 +105,11 @@ fragment deepFieldNotDefined on Dog {
105105
deeper_unknown_field
106106
}
107107
}
108-
108+
109109
query {
110110
dog {
111111
...deepFieldNotDefined
112-
}
112+
}
113113
}
114114
");
115115
}
@@ -123,11 +123,11 @@ fragment subFieldNotDefined on Human {
123123
unknown_field
124124
}
125125
}
126-
126+
127127
query {
128128
human {
129129
...subFieldNotDefined
130-
}
130+
}
131131
}
132132
");
133133
}
@@ -141,11 +141,11 @@ ... on Dog {
141141
meowVolume
142142
}
143143
}
144-
144+
145145
query {
146146
pet {
147147
...fieldNotDefined
148-
}
148+
}
149149
}
150150
");
151151
}
@@ -157,11 +157,11 @@ public void BadAliasedFieldTargetNotDefined()
157157
fragment aliasedFieldTargetNotDefined on Dog {
158158
volume : mooVolume
159159
}
160-
160+
161161
query {
162162
dog {
163163
...aliasedFieldTargetNotDefined
164-
}
164+
}
165165
}
166166
");
167167
}
@@ -173,11 +173,11 @@ public void BadAliasedLyingFieldTargetNotDefined()
173173
fragment aliasedLyingFieldTargetNotDefined on Dog {
174174
barkVolume : kawVolume
175175
}
176-
176+
177177
query {
178178
dog {
179179
...aliasedLyingFieldTargetNotDefined
180-
}
180+
}
181181
}
182182
");
183183
}
@@ -189,11 +189,11 @@ public void BadNotDefinedOnInterface()
189189
fragment notDefinedOnInterface on Pet {
190190
tailLength
191191
}
192-
192+
193193
query {
194194
pet {
195195
...notDefinedOnInterface
196-
}
196+
}
197197
}
198198
");
199199
}
@@ -205,11 +205,11 @@ public void DefinedOnImplementorsButNotOnInterface()
205205
fragment definedOnImplementorsButNotInterface on Pet {
206206
nickname
207207
}
208-
208+
209209
query {
210210
pet {
211211
...definedOnImplementorsButNotInterface
212-
}
212+
}
213213
}
214214
");
215215
}
@@ -221,11 +221,11 @@ public void MetaFieldSelectionOnUnion()
221221
fragment directFieldSelectionOnUnion on CatOrDog {
222222
__typename
223223
}
224-
224+
225225
query {
226226
catOrDog {
227227
...directFieldSelectionOnUnion
228-
}
228+
}
229229
}
230230
");
231231
}
@@ -237,11 +237,11 @@ public void DireftFieldSelectionOnUnion()
237237
fragment directFieldSelectionOnUnion on CatOrDog {
238238
directField
239239
}
240-
240+
241241
query {
242242
catOrDog {
243243
...directFieldSelectionOnUnion
244-
}
244+
}
245245
}
246246
");
247247
}
@@ -253,11 +253,11 @@ public void DefinedOnImplementorQueriedOnUnion()
253253
fragment definedOnImplementorsQueriedOnUnion on CatOrDog {
254254
name
255255
}
256-
256+
257257
query {
258258
catOrDog {
259259
...definedOnImplementorsQueriedOnUnion
260-
}
260+
}
261261
}
262262
");
263263
}
@@ -274,11 +274,41 @@ ... on Dog {
274274
name
275275
}
276276
}
277-
277+
278278
query {
279279
pet {
280280
...objectFieldSelection
281-
}
281+
}
282+
}
283+
");
284+
}
285+
286+
[Fact]
287+
public void WrongFieldsOnUnionTypeList()
288+
{
289+
// arrange
290+
ISchema schema = SchemaBuilder
291+
.New()
292+
.AddDocumentFromString(@"
293+
type Bar { baz: String }
294+
type Baz { baz: String }
295+
union Foo = Bar | Baz
296+
type Query {
297+
list: [Foo!]
298+
}")
299+
.AddResolver("Query", "list", ctx => null!)
300+
.AddResolver("Bar", "baz", ctx => null!)
301+
.AddResolver("Baz", "baz", ctx => null!)
302+
.Create();
303+
304+
305+
ExpectErrors(
306+
schema,
307+
@"
308+
query {
309+
list {
310+
qux
311+
}
282312
}
283313
");
284314
}

‎src/HotChocolate/Core/test/Validation.Tests/__snapshots__/FieldsOnCorrectTypeRuleTests.DefinedOnImplementorQueriedOnUnion.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Kind": "SelectionSet",
2323
"Location": {
2424
"Start": 73,
25-
"End": 156,
25+
"End": 140,
2626
"Line": 2,
2727
"Column": 73
2828
},

‎src/HotChocolate/Core/test/Validation.Tests/__snapshots__/FieldsOnCorrectTypeRuleTests.DireftFieldSelectionOnUnion.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Kind": "SelectionSet",
2323
"Location": {
2424
"Start": 66,
25-
"End": 156,
25+
"End": 140,
2626
"Line": 2,
2727
"Column": 66
2828
},
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
[
2+
{
3+
"Message": "A union type cannot declare a field directly. Use inline fragments or fragments instead.",
4+
"Code": null,
5+
"Path": {
6+
"Parent": null,
7+
"Depth": 0,
8+
"Name": "list"
9+
},
10+
"Locations": [
11+
{
12+
"Line": 3,
13+
"Column": 26
14+
}
15+
],
16+
"Extensions": {
17+
"type": "Foo",
18+
"specifiedBy": "http://spec.graphql.org/June2018/#sec-Field-Selections-on-Objects-Interfaces-and-Unions-Types"
19+
},
20+
"Exception": null,
21+
"SyntaxNode": {
22+
"Kind": "SelectionSet",
23+
"Location": {
24+
"Start": 50,
25+
"End": 119,
26+
"Line": 3,
27+
"Column": 26
28+
},
29+
"Selections": [
30+
{
31+
"Kind": "Field",
32+
"Alias": null,
33+
"Arguments": [],
34+
"SelectionSet": null,
35+
"Location": {
36+
"Start": 76,
37+
"End": 101,
38+
"Line": 4,
39+
"Column": 25
40+
},
41+
"Name": {
42+
"Kind": "Name",
43+
"Location": {
44+
"Start": 76,
45+
"End": 101,
46+
"Line": 4,
47+
"Column": 25
48+
},
49+
"Value": "qux"
50+
},
51+
"Directives": []
52+
}
53+
]
54+
}
55+
}
56+
]

0 commit comments

Comments
 (0)
Please sign in to comment.