OBJECT

FollowEdge

An element in a paginated list of follows relationships. Contains metadata about the follow relationship between two users.

link GraphQL Schema definition

1type FollowEdge {
2
3# An opaque cursor identifying the edge's position in the paginted list.
4cursor: Cursor!
5
6# Whether to disable notifications for this relationship.
7disableNotifications: Boolean @deprecated( reason: "use notificationSettings.isEnabled instead." )
8
9# Represents when this relationship was established.
10followedAt: Time
11
12# The user who is followed.
13node: User
14
15# Notification settings for this relationship.
16notificationSettings: ChannelNotificationSettings
17
18}