Fix wrong length being used in validator.

(cherry picked from commit 8ba1460)
This commit is contained in:
Daniel Tschinder 2018-06-22 21:56:19 +07:00 committed by Vladimir Razuvaev
parent d53f7f041e
commit 2540436a2c

View File

@ -426,7 +426,7 @@ class OverlappingFieldsCanBeMerged extends AbstractValidationRule
$fragmentNames1Length = count($fragmentNames1);
if ($fragmentNames1Length !== 0) {
$comparedFragments = [];
for ($i = 0; $i < $fragmentNames2Length; $i++) {
for ($i = 0; $i < $fragmentNames1Length; $i++) {
$this->collectConflictsBetweenFieldsAndFragment(
$context,
$conflicts,