OBJECT

KeyBatchConnection

The connection of key batches for a given key pool.

link GraphQL Schema definition

1type KeyBatchConnection {
2
3# The list of key batch edges in the connection.
4edges: [KeyBatchEdge!]!
5
6# The metadata about having more key batches to fetch, or if there is a previous
7# page of key batches.
8pageInfo: PageInfo!
9
10# The total number of key batches for the key pool.
11totalCount: Int!
12
13}