14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const INSERT_ONE_API_KEY = gql`
|
|
mutation InsertOneApiKey($data: ApiKeyCreateInput!) {
|
|
createOneApiKey(data: $data) {
|
|
id
|
|
name
|
|
token
|
|
createdAt
|
|
expiresAt
|
|
}
|
|
}
|
|
`;
|