OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
mutation executeTransactionBlock($transactionDataBcs: Base64!, $signatures: [Base64!]!, $showBalanceChanges: Boolean = false , $showEffects: Boolean = false , $showRawEffects: Boolean = false , $showEvents: Boolean = false , $showInput: Boolean = false , $showObjectChanges: Boolean = false , $showRawInput: Boolean = false ) {
executeTransaction(transactionDataBcs: $transactionDataBcs, signatures: $signatures) {
errors
effects {
effectsBcs @include(if: $showEffects)
effectsBcs @include(if: $showRawEffects)
events @include(if: $showEvents) {
pageInfo {
hasNextPage
endCursor
}
nodes {
sender {
address
}
contents {
json
}
}
}
balanceChanges @include(if: $showBalanceChanges) {
pageInfo {
hasNextPage
endCursor
}
nodes {
owner {
address
}
coinType {
repr
}
amount
}
}
objectChanges @include(if: $showObjectChanges) {
pageInfo {
hasNextPage
endCursor
}
nodes {
address
inputState {
version
}
outputState {
version
}
}
}
transaction {
digest
sender {
address
}
transactionBcs @include(if: $showInput)
transactionBcs @include(if: $showRawInput)
}
status
executionError {
message
}
}
}
}Content copied to clipboard