Skip to main content

⚠️ This is the alpha version. The operation or type does not exist in the beta version.

ExecutionResult

The result of an execution, including errors that occurred during said execution.

type ExecutionResult {
errors: [String!]
effects: TransactionBlockEffects!
}

Fields

ExecutionResult.errors ● [String!] list scalar

The errors field captures any errors that occurred during execution

ExecutionResult.effects ● TransactionBlockEffects! non-null object

The effects of the executed transaction. Since the transaction was just executed and not indexed yet, fields including balance_changes, timestamp and checkpoint are not available.

Returned By

executeTransactionBlock mutation