Batcher
Sender address that created batches.
type Batcher {
  id: String!
  batchCounter: BigInt!
  batches(
    skip: Int = 0
    first: Int = 100
    orderBy: Batch_orderBy
    orderDirection: OrderDirection
    where: Batch_filter
  ): [Batch!]!
}
Fields
Batcher.id ● String! non-null scalar
Unique identifier: batcher-{chainId}-{sender}
Batcher.batchCounter ● BigInt! non-null scalar
Total number of batches started by this sender.
Batcher.batches ● [Batch!]! non-null object
Batches started by this sender.