OBJECT
FriendConnection
A list of a user's friend relationships.
link GraphQL Schema definition
1 type FriendConnection { 2 3 # The friend elements of this list. 4 : [FriendEdge] 5 6 # The total number of friends this user has. 7 : Int! 8 9 }
OBJECT
A list of a user's friend relationships.
1 type FriendConnection { 2 3 # The friend elements of this list. 4 : [FriendEdge] 5 6 # The total number of friends this user has. 7 : Int! 8 9 }