Hello,
I am unable to update my GraphQL schema. It always returns Instance data is not valid.
Not a major deal but forces me to override the schema and recreate roles etc…
Some examples:
type Query {
accountsByEmail(email: String!): [Account!]!
+ resetRequestByToken(token: String!): [ResetRequest!]!
}
type Mutation {
register(email: String!, password: String!): Account! @resolver
login(email: String!, password: String!): String! @resolver
resetPasswordRequest(email: String!): ResetRequest! @resolver
+ resetPassword(token: String!, password: String!): String! @resolver
}
Have tried deleting the database and starting fresh but same thing occurs. First schema upload works fine then subsequent updates return Instance data is not valid.
Thanks in advance