OBJECT

HostConnection

Paginated list of Users hosting a particular target User.

link GraphQL Schema definition

1type HostConnection {
2
3# Users hosting a target User.
4edges: [HostEdge!]
5
6# Pagination information for this connection.
7pageInfo: PageInfo!
8
9# The total number of users hosting a target.
10totalCount: Int
11
12}