activitySeriesConnection
Paginated list of event series objects. Each page of the results will include at most 50 entries unless otherwise specified using the first parameter. Query the pageInfo.hasNextPage field to know whether all objects were returned.
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. |
| sortOrder | SortOrder | Activity sort order |
| sortBy | ActivitySeriesSortField | Sort activity series by field. |
| filters | ActivitySeriesFilter |
Returns
Sample
query {
activitySeriesConnection(first: 10) {
nodes {
activitySeriesId
attemptNumber
causeErrorCode
causeErrorMessage
causeErrorReason
causeErrorRemedy
clusterName
clusterUuid
dataTransferred
effectiveThroughput
failureReason
fid
id
isCancelable
isOnDemand
isPolarisEventSeries
isTransactionLogEventSeries
lastActivityMessage
lastActivityStatus
lastActivityType
lastEventAddedAt
lastUpdated
lastVerifiedAt
location
logicalSize
objectId
objectName
objectType
orgId
orgName
progress
severity
slaDomainName
startTime
urlMetadata
username
}
pageInfo {
hasNextPage
endCursor
}
}
}
{
"data": {
"activitySeriesConnection": {
"nodes": [
[
{
"activitySeriesId": "00000000-0000-0000-0000-000000000000",
"attemptNumber": 0,
"causeErrorCode": "example-string",
"causeErrorMessage": "example-string",
"causeErrorReason": "example-string",
"causeErrorRemedy": "example-string"
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}