Skip to content

getMissedMongoCollectionSetSnapshots

Retrieve information on the missed snapshots for a MongoDB collection set Supported in v9.5+ Retrieve the time of day when the snapshots were missed for a MongoDB collection set.

Arguments

Argument Type Description
input (required) GetMissedMongoCollectionSetSnapshotsInput! Input for V1GetMissedMongoCollectionSetSnapshots.

Returns

MissedSnapshotListResponse!

Sample

query GetMissedMongoCollectionSetSnapshots($input: GetMissedMongoCollectionSetSnapshotsInput!) {
  getMissedMongoCollectionSetSnapshots(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "getMissedMongoCollectionSetSnapshots": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "archivalLocationType": [
            "example-string"
          ],
          "missedSnapshotTime": "2024-01-01T00:00:00.000Z"
        }
      ]
    }
  }
}