Skip to content

failoverGroupWorkloads

Retrieves workloads within a failover group for high-availability management.

Arguments

Argument Type Description
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
last Int Returns the last n elements from the list.
before String Returns the elements in the list that occur before the specified cursor.
failoverGroupId (required) UUID! Failover group ID to get workloads for.
filter FailoverGroupWorkloadFilter Filters to apply to the query.

Returns

FailoverGroupWorkloadConnection!

Sample

query FailoverGroupWorkloads($failoverGroupId: UUID!) {
  failoverGroupWorkloads(
    failoverGroupId: $failoverGroupId
    first: 10
  ) {
    nodes {
      counterpartIds
      hostIds
      name
      primaryClusterUuid
      status
      statusMessage
      workloadId
      workloadType
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{
  "failoverGroupId": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "failoverGroupWorkloads": {
      "nodes": [
        [
          {
            "counterpartIds": [
              "00000000-0000-0000-0000-000000000000"
            ],
            "hostIds": [
              "00000000-0000-0000-0000-000000000000"
            ],
            "name": "example-string",
            "primaryClusterUuid": "00000000-0000-0000-0000-000000000000",
            "status": "FAILOVER_GROUP_OBJECT_STATUS_DISCONNECTED",
            "statusMessage": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}