Files
automatisch/packages/web/src/graphql/mutations/forgot-password.ee.js
2024-02-29 09:38:32 +00:00

7 lines
172 B
JavaScript

import { gql } from '@apollo/client';
export const FORGOT_PASSWORD = gql`
mutation ForgotPassword($input: ForgotPasswordInput) {
forgotPassword(input: $input)
}
`;