OBJECT

UserRelationship

Relationship status between the authenticated viewer and a target user. All fields are from the viewer's perspective — e.g. blocked means the viewer blocked the target, NOT that the target blocked the viewer.

link GraphQL Schema definition

  • type UserRelationship {
  • # Whether this user follows the viewer
  • follower: Boolean!
  • # Whether the viewer follows this user
  • following: Boolean!
  • # Whether the viewer has blocked this user
  • blocked: Boolean!
  • # Whether the viewer has muted this user
  • muted: Boolean!
  • }