this doesn't work if my schema is like this. ``` t...
# orm-help
n
this doesn't work if my schema is like this.
Copy code
type SignupResponse {
  token: String!
  user: User!
}

type Mutation {
  signup(name: String!, email: String!, password: String!): SignupResponse!
}
However it works if i stop returning custom return type and start returning
User