mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
Error handling and schema validation improvements (#404)
This commit is contained in:
parent
84a52c6c76
commit
ed1746e800
2 changed files with 5 additions and 3 deletions
|
@ -259,9 +259,11 @@ class ReferenceExecutor implements ExecutorImplementation
|
|||
return $result->then(
|
||||
null,
|
||||
function ($error) {
|
||||
$this->exeContext->addError($error);
|
||||
if ($error instanceof Error) {
|
||||
$this->exeContext->addError($error);
|
||||
|
||||
return $this->exeContext->promises->createFulfilled(null);
|
||||
return $this->exeContext->promises->createFulfilled(null);
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -252,7 +252,7 @@ class SchemaValidationContext
|
|||
if (! $type instanceof NamedType) {
|
||||
$this->reportError(
|
||||
'Expected GraphQL named type but got: ' . Utils::printSafe($type) . '.',
|
||||
is_object($type) ? $type->astNode : null
|
||||
$type instanceof Type ? $type->astNode : null
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue