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