OBJECT
MutualFollows
link GraphQL Schema definition
- type MutualFollows {
- # Number of this user's followers that the viewer also follows
- : Int!
- # Sample of this user's followers that the viewer also follows (default: 3, max:
- # 10)
- #
- # Arguments
- # first: [Not documented]
- (: Int): [User!]!
- # Number of users this user follows that the viewer also follows
- : Int!
- # Sample of users this user follows that the viewer also follows (default: 3, max:
- # 10)
- #
- # Arguments
- # first: [Not documented]
- (: Int): [User!]!
- }