OBJECT

FriendEdge

The friendship between the authenticated user and another user.

link GraphQL Schema definition

1type FriendEdge {
2
3# An action that a user or session is performing.
4activity: Activity
5
6# The computed state of a user or session.
7availability: Availability!
8
9# The last time the friend's availability or activity changed.
10lastStatusChangeAt: Time
11
12# The friend user.
13node: User
14
15}