add has follwer to feed query #204

Merged
dean merged 1 commits from dean/add-has-following-to-feed into master 2025-11-06 23:30:08 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit aac9879afc - Show all commits

View File

@@ -3223,6 +3223,7 @@ export type VideoGql = {
export type VideoHistoryGql = { export type VideoHistoryGql = {
__typename?: "VideoHistoryGQL"; __typename?: "VideoHistoryGQL";
hasFollowing: Scalars["Boolean"]["output"];
pageInfo: PageInfoGql; pageInfo: PageInfoGql;
videos: Array<VideoGql>; videos: Array<VideoGql>;
}; };

View File

@@ -320,6 +320,7 @@ enum BannerKindEnum {
type VideoHistoryGQL { type VideoHistoryGQL {
videos: [VideoGQL!]! videos: [VideoGQL!]!
pageInfo: PageInfoGQL! pageInfo: PageInfoGQL!
hasFollowing: Boolean!
} }
type VideoGQL { type VideoGQL {