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