Improve comparison in ReferenceExecutor

This commit is contained in:
Simon Podlipsky 2018-11-23 12:17:33 +01:00
parent bdbb30c604
commit e344c8a441

View File

@ -153,7 +153,7 @@ class ReferenceExecutor implements ExecutorImplementation
break;
}
}
if (! $operation) {
if ($operation === null) {
if ($operationName) {
$errors[] = new Error(sprintf('Unknown operation named "%s".', $operationName));
} else {
@ -165,7 +165,7 @@ class ReferenceExecutor implements ExecutorImplementation
);
}
$variableValues = null;
if ($operation) {
if ($operation !== null) {
[$coercionErrors, $coercedVariableValues] = Values::getVariableValues(
$schema,
$operation->variableDefinitions ?: [],