OBJECT

Follow

Data about the relationship between one User and a User they are following.

link GraphQL Schema definition

1type Follow {
2
3# Whether to disable notifications for this relationship.
4disableNotifications: Boolean
5
6# Represents when this relationship was established.
7followedAt: Time
8
9# The user who is followed.
10user: User
11
12}