Skip to content

deleteMssqlDbSnapshots

Delete snapshots of a Microsoft SQL Database.

Arguments

Argument Type Description
input (required) DeleteMssqlDbSnapshotsInput! Input for V1DeleteMssqlDbSnapshots.

Returns

ResponseSuccess!

Sample

mutation DeleteMssqlDbSnapshots($input: DeleteMssqlDbSnapshotsInput!) {
  deleteMssqlDbSnapshots(input: $input) {
    success
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "deleteMssqlDbSnapshots": {
      "success": true
    }
  }
}