When I request a mutation to my graphql server(using graphql-go) with null values in input arguments,
the null values are missing in ResolveParams.Args
I want to distinguish 'description' property between value as null case and missing case
PS.
When I write graphql server with graphql-js (javascript version of graphql library),
null values comes into the resolver implementation function normally.
When I request a mutation to my graphql server(using graphql-go) with null values in input arguments, the null values are missing in ResolveParams.Args
with variable...
Property 'description' does not come into mutation resolver function
I want to distinguish 'description' property between value as null case and missing case
PS. When I write graphql server with graphql-js (javascript version of graphql library), null values comes into the resolver implementation function normally.