You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By specs, nullable arguments and input fields can be omitted from query, which is different from setting them to null.
For input fields it is supported using PHP 7.4+ uninitialized property.
For arguments, this is not possible without unnecessary magic/loss of type safety. Arguments are passed to resolve functions directly and it is not posslble to pass them uninitialized.
Graphpianator will always pass null as argument value for omitted arguments.
The text was updated successfully, but these errors were encountered:
By specs, nullable
arguments
andinput fields
can be omitted from query, which is different from setting them to null.Graphpianator will always pass null as argument value for omitted arguments.
The text was updated successfully, but these errors were encountered: