From aac9879afc00d6374979ae076179bfd9ab0aa537 Mon Sep 17 00:00:00 2001 From: dean Date: Thu, 6 Nov 2025 13:13:54 -0800 Subject: [PATCH] add has follwer to feed query --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 1bc4fd5..92b7f38 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3223,6 +3223,7 @@ export type VideoGql = { export type VideoHistoryGql = { __typename?: "VideoHistoryGQL"; + hasFollowing: Scalars["Boolean"]["output"]; pageInfo: PageInfoGql; videos: Array; }; diff --git a/src/schema.gql b/src/schema.gql index fe85dcf..9ca10fe 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -320,6 +320,7 @@ enum BannerKindEnum { type VideoHistoryGQL { videos: [VideoGQL!]! pageInfo: PageInfoGQL! + hasFollowing: Boolean! } type VideoGQL {