Query
query SseEndpointPage {
sseEndpointPage {
nodes {
id
token
publicUrl
name
description
mode
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseEndpointPage": {
"nodes": [
{
"id": "id",
"token": "string",
"publicUrl": "string",
"name": "string",
"description": "string",
"mode": "FORWARD"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}Queries
sseEndpointPage
Return a cursor-paginated page of hosted SSE endpoints.
QUERY
sseEndpointPage(first: Int, after: String, requestOrigin: String): SseEndpointPage!Arguments
first
Int
default:100
Maximum nodes to return.
after
String
Cursor returned by the previous page.
requestOrigin
String
Origin used to build absolute public endpoint URLs.
Returns
nodes
[SseEndpoint!]!
Endpoints in the current page.
nextCursor
String
Cursor for the next page, or null at the end.
totalCount
Int!
Total endpoint count before pagination.
Query
query SseEndpointPage {
sseEndpointPage {
nodes {
id
token
publicUrl
name
description
mode
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseEndpointPage": {
"nodes": [
{
"id": "id",
"token": "string",
"publicUrl": "string",
"name": "string",
"description": "string",
"mode": "FORWARD"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}