diff --git a/src/index.tsx b/src/index.tsx index 529ede5..c517dbb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3178,6 +3178,7 @@ export type UserGql = { following?: Maybe>; id: Scalars["Int"]["output"]; isAdmin?: Maybe; + isFollowedByCurrentUser?: Maybe; profileImageUri?: Maybe; stripeCustomerId?: Maybe; updatedAt?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index 715cf0d..1db3355 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -374,6 +374,7 @@ type UserGQL { agreesToMarketing: Boolean following: [UserGQL!] followers: [UserGQL!] + isFollowedByCurrentUser: Boolean } type ShotGQL {