Question
hey team. I'm hoping I'm just having a brain fart, but I am working through this email reset.
mutation {
userSendPasswordReset(email: "test_user-002@exampleuser.com", redirectUrl: "http://localhost:5000/auth") {
message
}
}
{
errors: [
{
message: "No query string was present"
}
]
}
http://localhost:5000/auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flocalhost%3A5000%2Fauth&variables%5Btoken%5D=ETsb5W8xDqQQk8CjAiqs
decoded
http://localhost:5000/auth?query=query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}&variables[redirectUrl]=http://localhost:5000/auth&variables[token]=ETsb5W8xDqQQk8CjAiqs
It looks like a query string is in fact present in the uri however.
Am I just missing something?
Question
hey team. I'm hoping I'm just having a brain fart, but I am working through this email reset.
{ errors: [ { message: "No query string was present" } ] }decoded
http://localhost:5000/auth?query=query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}&variables[redirectUrl]=http://localhost:5000/auth&variables[token]=ETsb5W8xDqQQk8CjAiqsIt looks like a query string is in fact present in the uri however.
Am I just missing something?