feat: add change password tab to user profile settings

This commit is contained in:
Jordan Knott
2020-08-12 14:09:12 -05:00
parent e64f6f8569
commit 6761d4571e
5 changed files with 152 additions and 4 deletions

View File

@ -0,0 +1,11 @@
import gql from 'graphql-tag';
export const UPDATE_USER_PASSWORD_MUTATION = gql`
mutation updateUserPassword($userID: UUID!, $password: String!) {
updateUserPassword(input: { userID: $userID, password: $password }) {
ok
}
}
`;
export default UPDATE_USER_PASSWORD_MUTATION;