13 lines
260 B
JavaScript
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
|
|
}
|
|
}
|
|
`;
|