Batch
No description
interface Batch implements Node {
id: ID!
status: BatchStatus!
nonce: String!
created: Date!
totalCount: Decimal
successfulCount: Decimal
failedCount: Decimal
}
Fields
id ● ID! non-null scalar
status ● BatchStatus! non-null union
nonce ● String! non-null scalar
created ● Date! non-null scalar
totalCount ● Decimal scalar
Counts for the Batch will be updated when the batched item reaches a final state.
successfulCount ● Decimal scalar
failedCount ● Decimal 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.