Query
query SseHistory($input: SseHistoryQueryInput!) {
sseHistory(input: $input) {
view
streams {
id
endpointId
endpointName
endpointToken
mode
status
}
events {
id
requestId
request {
id
endpointId
endpointName
endpointToken
mode
status
}
sequence
logicalIndex
stage
}
nextCursor
matchingCount
totalCount
}
}Variables
{
"input": {}
}Response
{
"data": {
"sseHistory": {
"view": "STREAMS",
"streams": [
{
"id": "id",
"endpointId": "id",
"endpointName": "string",
"endpointToken": "string",
"mode": "FORWARD",
"status": "string"
}
],
"events": [
{
"id": "id",
"requestId": "id",
"request": {
"id": "id",
"endpointId": "id",
"endpointName": "string",
"endpointToken": "string",
"mode": "FORWARD",
"status": "string"
},
"sequence": 1,
"logicalIndex": 1,
"stage": "SOURCE"
}
],
"nextCursor": "string",
"matchingCount": 1,
"totalCount": 1
}
}
}Queries
sseHistory
sse history field.
QUERY
sseHistory(input: SseHistoryQueryInput!): SseHistoryPage!Arguments
input
required
input input value.
Returns
view
view field.
streams
streams field.
events
[SseHistoryEvent!]!
events field.
nextCursor
String
next cursor field.
matchingCount
Int!
matching count field.
totalCount
Int!
total count field.
Query
query SseHistory($input: SseHistoryQueryInput!) {
sseHistory(input: $input) {
view
streams {
id
endpointId
endpointName
endpointToken
mode
status
}
events {
id
requestId
request {
id
endpointId
endpointName
endpointToken
mode
status
}
sequence
logicalIndex
stage
}
nextCursor
matchingCount
totalCount
}
}Variables
{
"input": {}
}Response
{
"data": {
"sseHistory": {
"view": "STREAMS",
"streams": [
{
"id": "id",
"endpointId": "id",
"endpointName": "string",
"endpointToken": "string",
"mode": "FORWARD",
"status": "string"
}
],
"events": [
{
"id": "id",
"requestId": "id",
"request": {
"id": "id",
"endpointId": "id",
"endpointName": "string",
"endpointToken": "string",
"mode": "FORWARD",
"status": "string"
},
"sequence": 1,
"logicalIndex": 1,
"stage": "SOURCE"
}
],
"nextCursor": "string",
"matchingCount": 1,
"totalCount": 1
}
}
}