Files
automatisch/packages/web/src/graphql/mutations/create-auth-link.ts
2021-10-14 18:34:30 +02:00

10 lines
171 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_AUTH_LINK = gql`
mutation CreateAuthLink($id: String!) {
createAuthLink(id: $id) {
url
}
}
`;