We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2a419 commit 997923dCopy full SHA for 997923d
src/validation/rules/OverlappingFieldsCanBeMergedRule.ts
@@ -267,22 +267,6 @@ function collectConflictsBetweenFieldsAndFragment(
267
// (E) Then collect any conflicts between the provided collection of fields
268
// and any fragment names found in the given fragment.
269
for (const referencedFragmentName of referencedFragmentNames) {
270
- // Memoize so two fragments are not compared for conflicts more than once.
271
- if (
272
- comparedFragmentPairs.has(
273
- referencedFragmentName,
274
- fragmentName,
275
- areMutuallyExclusive,
276
- )
277
- ) {
278
- continue;
279
- }
280
- comparedFragmentPairs.add(
281
282
283
284
- );
285
-
286
collectConflictsBetweenFieldsAndFragment(
287
context,
288
conflicts,
0 commit comments