OBJECT

IncomingFriendRequestConnection

Friend requests sent from other users to this user.

link GraphQL Schema definition

1type IncomingFriendRequestConnection {
2
3# The friend request elements of this list.
4edges: [IncomingFriendRequestEdge!]!
5
6# The most recent incoming friend request received by this user, if any exist.
7# This field is provided as a
8# convenience, as edges is not strictly time-ordered. The incoming friend
9# request's presence in this field does not
10# prevent it from also occurring in edges.
11newestEdge: IncomingFriendRequestEdge
12
13# Information about this page.
14pageInfo: PageInfo!
15
16# The total number of incoming friend requests.
17totalCount: Int!
18
19# The total number of unseen incoming friend requests. Use the
20# ClearUnreadFriendRequests mutation to set this to 0.
21totalUnreadCount: Int!
22
23}