PayoutBatch
No description
type PayoutBatch implements Node, Batch {
id: ID!
status: BatchStatus!
nonce: String!
created: Date!
totalCount: Decimal
successfulCount: Decimal
failedCount: Decimal
payouts(
first: UInt
last: UInt
before: Cursor
after: Cursor
): PayoutBatchPayoutConnection!
}
Fields
id ● ID! non-null scalar
status ● BatchStatus! non-null union
nonce ● String! non-null scalar
created ● Date! non-null scalar
totalCount ● Decimal scalar
successfulCount ● Decimal scalar
failedCount ● Decimal scalar
payouts ● PayoutBatchPayoutConnection! non-null object
Returns all payouts in a Batch. Payouts are sorted in reverse chronological order and are paged with a limit of 500 per page.
first●UIntscalar
last ● UInt scalar
before ● Cursor scalar
after ● Cursor scalar
Interfaces
Node interface
An abstract datatype that has a locally unique identifier, allowing a given node to be later queried by id using the
node(id: ID!)query.