Nitin Hayaran
10/20/2018, 7:06 PMtype 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