Skip to content

Commit 45e28a5

Browse files
fix(validation): catch OverlappingFieldsCanBeMergedRule violations with nested fragments (#4168)
In trying to prevent infinite loops, #3442 introduced a bug that causes certain violations of the [Field Selection Merging](https://spec.graphql.org/draft/#sec-Field-Selection-Merging) validation to not be caught (released in `16.3.0`, and backported to `15.9.0`). This PR fixes this bug, while continuing to prevent infinite loops.
1 parent 993d7ce commit 45e28a5

File tree

2 files changed

+149
-44
lines changed

2 files changed

+149
-44
lines changed

src/validation/__tests__/OverlappingFieldsCanBeMergedRule-test.ts

+54
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,33 @@ describe('Validate: Overlapping fields can be merged', () => {
548548
]);
549549
});
550550

551+
it('reports deep conflict after nested fragments', () => {
552+
expectErrors(`
553+
fragment F on T {
554+
...G
555+
}
556+
fragment G on T {
557+
...H
558+
}
559+
fragment H on T {
560+
x: a
561+
}
562+
{
563+
x: b
564+
...F
565+
}
566+
`).toDeepEqual([
567+
{
568+
message:
569+
'Fields "x" conflict because "b" and "a" are different fields. Use different aliases on the fields to fetch both if this was intentional.',
570+
locations: [
571+
{ line: 12, column: 9 },
572+
{ line: 9, column: 9 },
573+
],
574+
},
575+
]);
576+
});
577+
551578
it('ignores unknown fragments', () => {
552579
expectValid(`
553580
{
@@ -1138,4 +1165,31 @@ describe('Validate: Overlapping fields can be merged', () => {
11381165
},
11391166
]);
11401167
});
1168+
1169+
it('does not infinite loop on recursive fragments separated by fields', () => {
1170+
expectValid(`
1171+
{
1172+
...fragA
1173+
...fragB
1174+
}
1175+
1176+
fragment fragA on T {
1177+
x {
1178+
...fragA
1179+
x {
1180+
...fragA
1181+
}
1182+
}
1183+
}
1184+
1185+
fragment fragB on T {
1186+
x {
1187+
...fragB
1188+
x {
1189+
...fragB
1190+
}
1191+
}
1192+
}
1193+
`);
1194+
});
11411195
});

0 commit comments

Comments
 (0)