mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
Allow objects with __toString in IDType
This commit is contained in:
parent
3536280fac
commit
25e341e9d9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ When expected as an input type, any string (such as `"4"`) or integer
|
|||
if ($value === null) {
|
||||
return 'null';
|
||||
}
|
||||
if (!is_scalar($value)) {
|
||||
if (!is_scalar($value) && (!is_object($value) || !method_exists($value, '__toString'))) {
|
||||
throw new InvariantViolation("ID type cannot represent non scalar value: " . Utils::printSafe($value));
|
||||
}
|
||||
return (string) $value;
|
||||
|
|
Loading…
Add table
Reference in a new issue