OPERATION_DOCUMENT

The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:

query getAccountCoinsCount($address: String) {
current_fungible_asset_balances_aggregate(where: {
owner_address: {
_eq: $address
}

}
) {
aggregate {
count
}
}
}