refactor(web): rewrite mutation with POST /v1/admin/apps/:appKey/config

This commit is contained in:
Ali BARIN
2024-08-27 14:14:57 +00:00
parent af4c1f08ec
commit 48b2b006c0
7 changed files with 39 additions and 72 deletions

View File

@@ -2,7 +2,6 @@ type Query {
placeholderQuery(name: String): Boolean
}
type Mutation {
createAppConfig(input: CreateAppConfigInput): AppConfig
createConnection(input: CreateConnectionInput): Connection
createFlow(input: CreateFlowInput): Flow
createRole(input: CreateRoleInput): Role
@@ -549,13 +548,6 @@ type Subject {
key: String
}
input CreateAppConfigInput {
key: String
allowCustomConnection: Boolean
shared: Boolean
disabled: Boolean
}
input UpdateAppConfigInput {
id: String
allowCustomConnection: Boolean