Skip to main content
⚠️ This is the beta version of the Sui GraphQL schema. The beta schema will replace the alpha GraphQL schema upon its official release.

ProgrammableTransaction

No description

type ProgrammableTransaction {
inputs(
first: Int
after: String
last: Int
before: String
): TransactionInputConnection!
commands(
first: Int
after: String
last: Int
before: String
): CommandConnection!
}

Fields

ProgrammableTransaction.inputs ● TransactionInputConnection! non-null object

Input objects or primitive values.

ProgrammableTransaction.inputs.first ● Int scalar
ProgrammableTransaction.inputs.after ● String scalar
ProgrammableTransaction.inputs.last ● Int scalar
ProgrammableTransaction.inputs.before ● String scalar

ProgrammableTransaction.commands ● CommandConnection! non-null object

The transaction commands, executed sequentially.

ProgrammableTransaction.commands.first ● Int scalar
ProgrammableTransaction.commands.after ● String scalar
ProgrammableTransaction.commands.last ● Int scalar
ProgrammableTransaction.commands.before ● String scalar

Implemented By

TransactionKind union