Skip to content

archivalEntities

Lists all the user-created archival entities. This includes data center archival targets and cloud-native archival target mappings.

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.
filter [ArchivalEntityFilterInput!] Specifies how to filter the list of archival entities.
sortBy ArchivalEntityQuerySortByField Specifies the field by which the list of archival entities will be sorted.
sortOrder SortOrder Sorts the order of results.

Returns

ArchivalEntityConnection!

Sample

query {
  archivalEntities(first: 10) {
    nodes {
      useCaseType
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "archivalEntities": {
      "nodes": [
        [
          {
            "useCaseType": "CLOUD_NATIVE"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}