taikn
09/19/2017, 4:02 PMThe supplied query for the server side subscription `sendVerificationEmail` is invalid. Cannot query field 'confirmToken' on type 'User'. (line 7, column 7): confirmToken ^
Am i missing additional fields on my User
type?nilan
09/19/2017, 4:03 PMnilan
09/19/2017, 4:03 PMconfirmToken
in your subscription query, but that's not a field on User
.taikn
09/19/2017, 4:04 PMtaikn
09/19/2017, 4:08 PM# This schema is used for all included functions
type User {
id: ID!
# Must be unique
# Make it required if email is the only authorization method in your app
email: String @isUnique
password: String
}
nilan
09/19/2017, 4:09 PMtaikn
09/19/2017, 4:12 PM