Skip to content

excludeSharepointObjectsFromProtection

Exclude Sharepoint site objects from protection.

Arguments

Argument Type Description
input (required) ExcludeSharepointObjectsFromProtectionInput! The input for the operation to exclude Sharepoint objects from protection.

Returns

Void

Sample

mutation ExcludeSharepointObjectsFromProtection($input: ExcludeSharepointObjectsFromProtectionInput!) {
  excludeSharepointObjectsFromProtection(input: $input)
}
{
  "input": {
    "exclusions": [
      {
        "excludedObjects": [
          {
            "fid": "example-string",
            "name": "example-string",
            "objectType": "APP_CATALOG",
            "url": "https://example.com"
          }
        ],
        "siteFid": "example-string"
      }
    ],
    "orgId": "example-string"
  }
}
{
  "data": {
    "excludeSharepointObjectsFromProtection": "example-string"
  }
}