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
Dict(
"Query" => Dict(
"hello" => (root, args, ctx, info) -> (return "world")
),
"Mutation" => Dict(
"failingFunction" => (root, args, ctx, info) -> begin
println(args)
# ARGs will not properly parse and drop into this function
end
)
)
Thanks for your issue, you are right the nested input types are not working properly, we are preparing to launch a new version (0.3) in which we will rebuild the entire package from the kernel. So we hope to be able to solve this problem in the next version.
Describe the bug
When using nested Input types, the parser fails with the following error: Error: ErrorException("type Object_ has no field value")
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The args should arrive to the resolver as nested Dicts.
The text was updated successfully, but these errors were encountered: