Skip to main content

Batch

No description

interface Batch implements Node {
id: ID!
status: BatchStatus!
nonce: String!
externalReference: String
created: Date!
totalCount: Int
successfulCount: Int
failedCount: Int
}

Fields

Batch.id ● ID! non-null scalar

Batch.status ● BatchStatus! non-null union

Batch.nonce ● String! non-null scalar

Batch.externalReference ● String scalar

Batch.created ● Date! non-null scalar

Batch.totalCount ● Int scalar

Batch.successfulCount ● Int scalar

Batch.failedCount ● Int 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.