Skip to content

allSourceRecoverySpecsV2

Lists recovery specifications for the source in the failback scenario.

Arguments

Argument Type Description
input (required) ListSourceRecoverySpecsReq! Request for retrieving source recovery specifications for the failback scenario.

Returns

[SourceChildRecoverySpecMapV2!]!

Sample

query AllSourceRecoverySpecsV2($input: ListSourceRecoverySpecsReq!) {
  allSourceRecoverySpecsV2(input: $input) {
    workloadId
  }
}
{
  "input": {
    "recoveryPlanId": "00000000-0000-0000-0000-000000000000",
    "recoveryType": "CYBER",
    "workloadRecoveryPoints": [
      {
        "workloadId": "00000000-0000-0000-0000-000000000000"
      }
    ]
  }
}
{
  "data": {
    "allSourceRecoverySpecsV2": [
      {
        "workloadId": "00000000-0000-0000-0000-000000000000",
        "recoverySpec": {}
      }
    ]
  }
}