OBJECT

KeyPoolConnection

The connection of key pools to a user.

link GraphQL Schema definition

1type KeyPoolConnection {
2
3# The list of key pool edges associated with the user.
4edges: [KeyPoolEdge!]!
5
6# The metadata about having more key pools to fetch, or if there is a previous
7# page of key pools.
8pageInfo: PageInfo!
9
10# The total number of key pools for the given user.
11totalCount: Int!
12
13}