Files
automatisch/packages/web/src/graphql/mutations/forgot-password.ee.ts
2023-03-03 18:10:52 +00:00

8 lines
173 B
TypeScript

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