OPERATION_DOCUMENT

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

query paginateEpochValidators($id: UInt53!, $after: String) {
epoch(epochId: $id) {
validatorSet {
activeValidators(after: $after) {
pageInfo {
hasNextPage
endCursor
}
nodes {
__typename
...RPC_VALIDATOR_FIELDS
}
}
}
}
}

fragment RPC_VALIDATOR_FIELDS on Validator {
atRisk
contents {
type {
repr
}
json
bcs
}
}