OBJECT

IncomingFriendRequestEdge

A friend request sent from another user to this user.

link GraphQL Schema definition

1type IncomingFriendRequestEdge {
2
3# The time at which the friend request was sent.
4createdAt: Time!
5
6# An opaque cursor identifying the edge's position in the paginated list.
7cursor: Cursor!
8
9# The user who sent the friend request.
10node: User
11
12}