OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query paginateCheckpointTransactionBlocks($id: CheckpointId, $after: String) {
checkpoint(id: $id) {
transactionBlocks(after: $after) {
pageInfo {
hasNextPage
endCursor
}
nodes {
digest
}
}
}
}
Content copied to clipboard