StandingOrder
No description
type StandingOrder {
id: ID!
payments(
first: Int! = 50
after: String
offset: Int
orderBy: PaymentOrderByInput
filters: PaymentFiltersInput
): PaymentConnection!
transactions(
first: Int! = 50
after: String
offset: Int
orderBy: TransactionsOrderByInput
filters: TransactionsFiltersInput
): TransactionConnection
reference: String
label: String
amount: Amount
targetAvailableBalance: Amount
period: StandingOrderPeriod!
firstExecutionDate: DateTime
lastExecutionDate: DateTime
sepaBeneficiary: SEPABeneficiary!
statusInfo: StandingOrderStatusInfo!
createdAt: Date!
updatedAt: Date!
account: Account!
createdBy: User!
nextExecutionDate: Date
creditTransferMode: CreditTransferMode
}
Fields
StandingOrder.id ● ID! non-null scalar
Standing Order unique identifier
StandingOrder.payments ● PaymentConnection! non-null object
List of payments of an standing order.
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More)