Files
automatisch/packages/web/src/graphql/mutations/create-app-config.ts
2023-10-24 12:19:37 +02:00

14 lines
261 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_APP_CONFIG = gql`
mutation CreateAppConfig($input: CreateAppConfigInput) {
createAppConfig(input: $input) {
id
key
allowCustomConnection
shared
disabled
}
}
`;