Query
query SseBreakpointPage {
sseBreakpointPage {
nodes {
id
requestId
endpointId
status
version
resolution
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseBreakpointPage": {
"nodes": [
{
"id": "id",
"requestId": "id",
"endpointId": "id",
"status": "string",
"version": 1,
"resolution": "string"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}Queries
sseBreakpointPage
Return a cursor-paginated page of pending or resolved breakpoints.
QUERY
sseBreakpointPage(status: String, first: Int, after: String): SseBreakpointPage!Arguments
status
String
Optional breakpoint status filter.
first
Int
default:100
Maximum nodes to return.
after
String
Cursor returned by the previous page.
Returns
nodes
[SseBreakpoint!]!
Breakpoints in the current page.
nextCursor
String
Cursor for the next page, or null at the end.
totalCount
Int!
Total breakpoint count before pagination.
Query
query SseBreakpointPage {
sseBreakpointPage {
nodes {
id
requestId
endpointId
status
version
resolution
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseBreakpointPage": {
"nodes": [
{
"id": "id",
"requestId": "id",
"endpointId": "id",
"status": "string",
"version": 1,
"resolution": "string"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}