mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
export const resetPasswordMutation = /* GraphQL */ `
|
|
mutation resetPassword($token: String!,$password: String!){
|
|
resetPassword(token: $token,password: $password){
|
|
__typename
|
|
...on CurrentUser{
|
|
id
|
|
identifier
|
|
}
|
|
...on ErrorResult{
|
|
errorCode
|
|
message
|
|
}
|
|
}
|
|
}
|
|
` |