OBJECT

FollowerEdge

An element in a paginated list of followers. Contains metadata about the follower relationship between two users.

link GraphQL Schema definition

1type FollowerEdge {
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
8
9# Represents when this relationship was established.
10followedAt: Time
11
12# The user who is a follower.
13node: User
14
15# Notification settings for this relationship.
16notificationSettings: ChannelNotificationSettings
17
18}