deleteBasicAuth
Delete basic auth users from an environment.
deleteBasicAuth(
input: AppEnvironmentBasicAuthDeleteInput
): AppEnvironmentBasicAuthPayload!
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentBasicAuthDeleteInput) {
deleteBasicAuth(input: $input) {
app {
active
createdAt
id
name
organizationId
repo
serviceStatus
supportPackage
type
typeId
}
user
}
}
{
"input": {
"environmentId": 42,
"id": 42,
"username": [
"username"
]
}
}
{
"data": {
"deleteBasicAuth": {
"app": {
"active": true,
"createdAt": "createdAt",
"id": 42,
"name": "A name",
"organizationId": 42,
"repo": "repo",
"serviceStatus": "serviceStatus",
"supportPackage": "supportPackage",
"type": "type",
"typeId": 42
},
"user": "user"
}
}
}
Arguments
deleteBasicAuth.input ● AppEnvironmentBasicAuthDeleteInput input common
The basic auth users to delete.
Type
AppEnvironmentBasicAuthPayload object common
The result of a basic auth operation.