removeAppsExclusion
Remove multiple application exclusions.
Examples
mutation RemoveAppsExclusion($input: RemoveAppsExclusionInput!) {
removeAppsExclusion(input: $input) {
removeAppsExclusion {
isSucceeded
exclusionId
}
}
}Variables
This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.
{
"input": {
"relevance": "Irrelevant",
"exclusionIds": ["example"]
}
}curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
"query": "mutation RemoveAppsExclusion($input: RemoveAppsExclusionInput!) { removeAppsExclusion(input: $input) { removeAppsExclusion { isSucceeded exclusionId } } }",
"variables": {
"input": {
"relevance": "Irrelevant",
"exclusionIds": ["example"]
}
}
}'Arguments
You can use the following argument(s) to customize your removeAppsExclusion mutation.
Argument
Description
Supported fields
input RemoveAppsExclusionInput! required
Details of the exclusions to remove
relevance ExclusionRelevance!
exclusionIds [String!]!
Fields
Return type: RemoveAppsExclusionRes
You can use the following field(s) to specify what information your removeAppsExclusion mutation will return. Please note that some fields may have their own subfields.
Field
Description
Supported fields
Last updated
