allSnapshotsByIds
Returns the details for the passed snapshot IDs.
Arguments
| Argument | Type | Description |
|---|---|---|
| snapshotFids (required) | [UUID!]! | List of snapshot UUIDs. |
| shouldShowSnapshotRetentionInfo (required) | Boolean! | Specifies whether to show snapshot retention. |
Returns
[GenericSnapshot!]!
Sample
query AllSnapshotsByIds($snapshotFids: [UUID!]!, $shouldShowSnapshotRetentionInfo: Boolean!) {
allSnapshotsByIds(
snapshotFids: $snapshotFids
shouldShowSnapshotRetentionInfo: $shouldShowSnapshotRetentionInfo
) {
date
expirationDate
id
indexingAttempts
isAnomaly
isCorrupted
isExpired
isIndexed
isOnDemandSnapshot
isQuarantineProcessing
isQuarantined
isUnindexable
snappableId
}
}