Skip to main content

ProgrammableSystemTransaction

ProgrammableSystemTransaction is identical to ProgrammableTransaction, but GraphQL does not allow multiple variants with the same type.

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

Fields

ProgrammableSystemTransaction.commands ● CommandConnection! non-null object

The transaction commands, executed sequentially.

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

ProgrammableSystemTransaction.inputs ● TransactionInputConnection! non-null object

Input objects or primitive values.

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

Implemented By

TransactionKind union