Query
query SseHistoryFacetPage {
sseHistoryFacetPage {
nodes {
kind
value
label
endpointId
count
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseHistoryFacetPage": {
"nodes": [
{
"kind": "string",
"value": "string",
"label": "string",
"endpointId": "id",
"count": 1
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}Queries
sseHistoryFacetPage
Return cursor-paginated endpoint, mode, status, and event-name facets.
QUERY
sseHistoryFacetPage(first: Int, after: String): SseHistoryFacetPage!Arguments
first
Int
default:100
Maximum nodes to return.
after
String
Cursor returned by the previous page.
Returns
nodes
[SseHistoryFacet!]!
Facet values in the current page.
nextCursor
String
Cursor for the next page, or null at the end.
totalCount
Int!
Total facet count before pagination.
Query
query SseHistoryFacetPage {
sseHistoryFacetPage {
nodes {
kind
value
label
endpointId
count
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseHistoryFacetPage": {
"nodes": [
{
"kind": "string",
"value": "string",
"label": "string",
"endpointId": "id",
"count": 1
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}