ENUM

FollowsFilter

link GraphQL Schema definition

1enum FollowsFilter {
2
3# All users the user is following.
4ALL
5
6# Users the user is following to which the user can subscribe.
7# this is authenticated so only a logged in user can filter by SUBBABLE.
8SUBBABLE
9}