Skip to content

adVolumeExports

Active Directory volume export connection.

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.
filters [AdVolumeExportFilter!] Filter for Active Directory volume exports.
sortBy AdVolumeExportSortByInput Sort by argument for Active Directory volume exports.

Returns

AdVolumeExportConnection!

Sample

query {
  adVolumeExports(first: 10) {
    nodes {
      domainControllerId
      domainControllerName
      floatingIp
      id
      internalTimestamp
      isActive
      isUserVisible
      mountDir
      mountNodeIp
      smbValidIps
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "adVolumeExports": {
      "nodes": [
        [
          {
            "domainControllerId": "example-string",
            "domainControllerName": "example-string",
            "floatingIp": "example-string",
            "id": "00000000-0000-0000-0000-000000000000",
            "internalTimestamp": 0,
            "isActive": true
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}