This repository has been archived on 2023-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
automate/packages/web/src/graphql/mutations/create-auth-data.ts
2022-03-09 00:53:20 +03:00

10 lines
192 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_AUTH_DATA = gql`
mutation CreateAuthData($input: CreateAuthDataInput) {
createAuthData(input: $input) {
url
}
}
`;