Closed
Description
Question.
The Graphql Spec seems to have support for replacing required value with the default value. I think it was supported in version 2 as well, but currently if I try to generate by replacing query Media($includeAny:Boolean!)
with query Media($includeAny:Boolean = true)
it gives error Variable includeAny of type Boolean used in position expecting type Boolean!
. Is this feature implemented or am I missing something? If it's missing is it possible to implement it?