OPERATION_DOCUMENT

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

query getCommitteeInfo($epochId: UInt53, $after: String) {
epoch(id: $epochId) {
epochId
validatorSet {
activeValidators(after: $after) {
pageInfo {
hasNextPage
endCursor
}
nodes {
credentials {
protocolPubKey
}
votingPower
}
}
}
}
}