From f4445f7ecbd7c4c31ae6cea3b7e4ff2f0ced9f64 Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 8 Apr 2025 16:48:12 -0700 Subject: [PATCH] add followers to feed operation for reactions --- src/index.tsx | 6 ++++++ src/operations/feed.gql | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 93b6516..bef257c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3219,6 +3219,7 @@ export type GetFeedQuery = { id: number; username: string; profileImageUri?: string | null; + followers?: Array<{ __typename?: "UserGQL"; id: number }> | null; }; }>; }>; @@ -3283,6 +3284,7 @@ export type VideoCardFieldsFragment = { id: number; username: string; profileImageUri?: string | null; + followers?: Array<{ __typename?: "UserGQL"; id: number }> | null; }; }>; }; @@ -3356,6 +3358,7 @@ export type GetVideoFeedQuery = { id: number; username: string; profileImageUri?: string | null; + followers?: Array<{ __typename?: "UserGQL"; id: number }> | null; }; }>; }>; @@ -5055,6 +5058,9 @@ export const VideoCardFieldsFragmentDoc = gql` id username profileImageUri + followers { + id + } } reaction } diff --git a/src/operations/feed.gql b/src/operations/feed.gql index a9c605f..f6063f5 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -64,6 +64,9 @@ fragment VideoCardFields on VideoGQL { id username profileImageUri + followers { + id + } } reaction }