Skip to content

hasRelicAzureAdSnapshot

Checks if Microsoft Entra ID has relic snapshots.

Arguments

Argument Type Description
input (required) HasRelicAzureAdSnapshotInput! Input to check if Microsoft Entra ID has relic snapshots.

Returns

HasRelicAzureAdSnapshotReplyType!

Sample

query HasRelicAzureAdSnapshot($input: HasRelicAzureAdSnapshotInput!) {
  hasRelicAzureAdSnapshot(input: $input) {
    hasRelicSnapshots
  }
}
{
  "input": {
    "domainName": "example-string"
  }
}
{
  "data": {
    "hasRelicAzureAdSnapshot": {
      "hasRelicSnapshots": true
    }
  }
}