Skip to content

nodeTunnelStatuses

List of node tunnel status.

Arguments

Argument Type Description
input (required) GetNodesInput! Input for InternalGetNodes.

Returns

NodeTunnelStatusConnection!

Sample

query NodeTunnelStatuses($input: GetNodesInput!) {
  nodeTunnelStatuses(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "nodeTunnelStatuses": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "id": "example-string",
          "status": "example-string"
        }
      ]
    }
  }
}