If you explicitly set a variable to null, and that variable has a default value like this query:
myQuery(deleted: Boolean = false)
and you call
myQuery(deleted: null)
environmeng.getArgument("deleted") still returns false, instead of null.
- Is this a bug, or have I misunderstood the graphql spec?
- Is there any way to make it return null instead?