mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-03 16:15:36 +00:00
14 lines
396 B
JavaScript
14 lines
396 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const changePasswordMutation = gql`
|
|
mutation ($oldPassword: String!, $password: String!) {
|
|
changePassword(oldPassword: $oldPassword, newPassword: $password)
|
|
}
|
|
`
|
|
|
|
export const resetPasswordMutation = gql`
|
|
mutation ($nonce: String!, $email: String!, $password: String!) {
|
|
resetPassword(nonce: $nonce, email: $email, newPassword: $password)
|
|
}
|
|
`
|