OPERATION_DOCUMENT

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

query getMoveFunctionArgTypes($packageId: SuiAddress!, $module: String!, $function: String!) {
object(address: $packageId) {
asMovePackage {
module(name: $module) {
fileFormatVersion
function(name: $function) {
parameters {
signature
}
}
}
}
}
}