mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
Fixed "out of memory" error for edge cases of resolveType()
calls
This commit is contained in:
parent
154fdfee11
commit
6fb62b25b3
1 changed files with 1 additions and 1 deletions
|
@ -985,7 +985,7 @@ class Executor
|
|||
if (!($runtimeType instanceof ObjectType)) {
|
||||
throw new Error(
|
||||
"Abstract type {$returnType} must resolve to an Object type at runtime " .
|
||||
"for field {$info->parentType}.{$info->fieldName} with value \"" . print_r($result, true) . "\"," .
|
||||
"for field {$info->parentType}.{$info->fieldName} with value: " . Utils::printSafe($result) . "," .
|
||||
"received \"$runtimeType\".",
|
||||
$fieldNodes
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue