Query
query SseStorageEntryPage {
sseStorageEntryPage {
nodes {
key
value
version
updatedBy
createdAt
updatedAt
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseStorageEntryPage": {
"nodes": [
{
"key": "string",
"value": "value",
"version": 1,
"updatedBy": "string",
"createdAt": "string",
"updatedAt": "string"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}Queries
sseStorageEntryPage
Return a cursor-paginated page of shared global storage.
QUERY
sseStorageEntryPage(first: Int, after: String): SseStorageEntryPage!Arguments
first
Int
default:100
Maximum nodes to return.
after
String
Cursor returned by the previous page.
Returns
nodes
[SseStorageEntry!]!
Storage entries in the current page.
nextCursor
String
Cursor for the next page, or null at the end.
totalCount
Int!
Total storage entry count before pagination.
Query
query SseStorageEntryPage {
sseStorageEntryPage {
nodes {
key
value
version
updatedBy
createdAt
updatedAt
}
nextCursor
totalCount
}
}Response
{
"data": {
"sseStorageEntryPage": {
"nodes": [
{
"key": "string",
"value": "value",
"version": 1,
"updatedBy": "string",
"createdAt": "string",
"updatedAt": "string"
}
],
"nextCursor": "string",
"totalCount": 1
}
}
}