OBJECT
FriendEdge
The friendship between the authenticated user and another user.
link GraphQL Schema definition
1 type FriendEdge { 2 3 # An action that a user or session is performing. 4 : Activity 5 6 # The computed state of a user or session. 7 : Availability! 8 9 # The last time the friend's availability or activity changed. 10 : Time 11 12 # The friend user. 13 : User 14 15 }
link Required by
- FriendConnectionA list of a user's friend relationships.
- FriendRelationshipThe friend-type relationship between the authenticated user and another user. If this field is a FriendEdge, the authenticated user and the other user are Friends. If it is an IncomingFriendRequestEdge, the other user has an open friend request with authenticated user. If it is an OutgoingFriendRequestEdge, the authenticated user has an open friend request with the other user.