OBJECT

FollowerConnection

A paginated list of followers relationships.

link GraphQL Schema definition

1type FollowerConnection {
2
3# The elements of the paginated list.
4edges: [FollowerEdge]
5
6# Metadata about this page.
7pageInfo: PageInfo
8
9# The total number of followers.
10totalCount: Int
11
12}