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
Adding support for complex GraphQL types in "outputType" parameter
Currently, the "outputType" parameter of the Field/Query/Mutation annotations only supports Scalar or ObjectType.
We should instead support all possible types in the GraphQL syntax.
For instance:
```
@field(outputType="[User!]!")
```
This first commit contains a failing test showcasing the issue.
0 commit comments