Skip to content

vSphereLiveMounts

List of vSphere Live Mounts.

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.
filter [VsphereLiveMountFilterInput!] Filter for virtual machine Live Mounts.
sortBy VsphereLiveMountSortBy Sort virtual machine Live Mounts.

Returns

VsphereLiveMountConnection!

Sample

query {
  vSphereLiveMounts(first: 10) {
    nodes {
      attachingDiskCount
      cdmId
      hasAttachingDisk
      id
      isReady
      migrateDatastoreRequestId
      mountTimestamp
      newVmName
      unmountTimestamp
      vcenterId
      vmStatus
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "vSphereLiveMounts": {
      "nodes": [
        [
          {
            "attachingDiskCount": 0,
            "cdmId": "example-string",
            "hasAttachingDisk": true,
            "id": "example-string",
            "isReady": true,
            "migrateDatastoreRequestId": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}