OBJECT

FriendConnection

A list of a user's friend relationships.

link GraphQL Schema definition

1type FriendConnection {
2
3# The friend elements of this list.
4edges: [FriendEdge]
5
6# The total number of friends this user has.
7totalCount: Int!
8
9}