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"]
  }
}

Arguments

You can use the following argument(s) to customize your removeAppsExclusion mutation.

Argument
Description
Supported fields

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

removeAppsExclusion [RemoveAppSingleExclusionRes]

isSucceeded Boolean! exclusionId String

Last updated