OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query getAllBalances($owner: SuiAddress!, $limit: Int, $cursor: String) {
address(address: $owner) {
balances(first: $limit, after: $cursor) {
pageInfo {
hasNextPage
endCursor
}
nodes {
coinType {
repr
}
coinObjectCount
totalBalance
}
}
}
}
Content copied to clipboard