OBJECT

MutualFollows

link GraphQL Schema definition

  • type MutualFollows {
  • # Number of this user's followers that the viewer also follows
  • mutualFollowerCount: Int!
  • # Sample of this user's followers that the viewer also follows (default: 3, max:
  • # 10)
  • #
  • # Arguments
  • # first: [Not documented]
  • mutualFollowers(first: Int): [User!]!
  • # Number of users this user follows that the viewer also follows
  • mutualFollowingCount: Int!
  • # Sample of users this user follows that the viewer also follows (default: 3, max:
  • # 10)
  • #
  • # Arguments
  • # first: [Not documented]
  • mutualFollowing(first: Int): [User!]!
  • }

link Require by