mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 13:13:30 +03:00
Better located error handling
This commit is contained in:
parent
81986145fe
commit
87c812b221
1 changed files with 7 additions and 2 deletions
|
@ -79,8 +79,13 @@ class Error extends \Exception implements \JsonSerializable, ClientAware
|
|||
*/
|
||||
public static function createLocatedError($error, $nodes = null, $path = null)
|
||||
{
|
||||
if ($error instanceof self && $error->path) {
|
||||
return $error;
|
||||
if ($error instanceof self) {
|
||||
if ($error->path && $error->nodes) {
|
||||
return $error;
|
||||
} else {
|
||||
$nodes = $nodes ?: $error->nodes;
|
||||
$path = $path ?: $error->path;
|
||||
}
|
||||
}
|
||||
|
||||
$source = $positions = $originalError = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue