chore: remove update-app-config mutation

This commit is contained in:
Ali BARIN
2024-08-28 12:55:49 +00:00
parent 1392fed023
commit 19c4561feb
4 changed files with 0 additions and 34 deletions

View File

@@ -17,7 +17,6 @@ type Mutation {
generateAuthUrl(input: GenerateAuthUrlInput): AuthLink
registerUser(input: RegisterUserInput): User
resetConnection(input: ResetConnectionInput): Connection
updateAppConfig(input: UpdateAppConfigInput): AppConfig
updateConfig(input: JSONObject): JSONObject
updateConnection(input: UpdateConnectionInput): Connection
updateCurrentUser(input: UpdateCurrentUserInput): User
@@ -108,16 +107,6 @@ type SubstepArgumentAdditionalFieldsArgument {
value: String
}
type AppConfig {
id: String
key: String
allowCustomConnection: Boolean
canConnect: Boolean
canCustomConnect: Boolean
shared: Boolean
disabled: Boolean
}
type App {
name: String
key: String
@@ -547,13 +536,6 @@ type Subject {
key: String
}
input UpdateAppConfigInput {
id: String
allowCustomConnection: Boolean
shared: Boolean
disabled: Boolean
}
schema {
query: Query
mutation: Mutation