follows module acts on your own follow graph — the graph of the logged-in token holder. Use it to list the users you follow, list your followers, count either, and delete one of your follow relationships by its record ID.
fetchFollowing
Returns a paginated list of users you follow.Page number (1-indexed). Defaults to
1.Results per page. Defaults to
20.Promise<PaginatedResponse<FollowListItem>>, where FollowListItem is { followId, user, followedAt }.
fetchFollowers
Returns a paginated list of your followers.Page number (1-indexed). Defaults to
1.Results per page. Defaults to
20.Promise<PaginatedResponse<FollowListItem>>
fetchFollowingCount
Returns the number of users you follow.Promise<{ count: number }>
fetchFollowersCount
Returns the number of your followers.Promise<{ count: number }>
deleteFollow
Deletes one of your follow relationships by its follow ID.The ID of the follow relationship to delete.
Promise<void>
