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
Describe the bug
When defining a custom query, if you define the getType value as () => [String] the custom query ends up with a String return type in the schema.
Describe the bug
When defining a custom query, if you define the
getType
value as() => [String]
the custom query ends up with a String return type in the schema.To Reproduce
Expected behavior
Expected to be able to query
{ test }
and get back["a", "b"]
in the result.Actual behavior
test
is correctly created in the schema, but the return type is generated asString
instead ofString[]
.The text was updated successfully, but these errors were encountered: