Files
automatisch/packages/web/src/graphql/mutations/create-app-config.js
2024-02-29 09:38:32 +00:00

13 lines
260 B
JavaScript

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