OBJECT

OutgoingFriendRequestEdge

A friend request sent from this user to another user.

link GraphQL Schema definition

1type OutgoingFriendRequestEdge {
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 to whom the friend request was sent.
10node: User
11
12}