Files
automatisch/packages/web/src/graphql/mutations/reset-password.ee.ts
2023-03-03 20:13:31 +00:00

8 lines
169 B
TypeScript

import { gql } from '@apollo/client';
export const RESET_PASSWORD = gql`
mutation ResetPassword($input: ResetPasswordInput) {
resetPassword(input: $input)
}
`;