diff --git a/src/index.tsx b/src/index.tsx index 0138a98..eda08cb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3679,6 +3679,7 @@ export type VideoGql = { export type VideoHistoryGql = { __typename?: "VideoHistoryGQL"; + followingCount: Scalars["Int"]["output"]; hasFollowing: Scalars["Boolean"]["output"]; pageInfo: PageInfoGql; videos: Array; @@ -4508,6 +4509,7 @@ export type GetVideoFeedQuery = { getFeedVideos: { __typename?: "VideoHistoryGQL"; hasFollowing: boolean; + followingCount: number; videos: Array<{ __typename?: "VideoGQL"; id: number; @@ -9478,6 +9480,7 @@ export const GetVideoFeedDocument = gql` endCursor } hasFollowing + followingCount } } ${VideoCardFieldsFragmentDoc} diff --git a/src/operations/feed.gql b/src/operations/feed.gql index ec831af..4c1946d 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -146,5 +146,6 @@ query GetVideoFeed( endCursor } hasFollowing + followingCount } } diff --git a/src/schema.gql b/src/schema.gql index 14983f7..8eae793 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -732,6 +732,7 @@ type VideoHistoryGQL { videos: [VideoGQL!]! pageInfo: PageInfoGQL! hasFollowing: Boolean! + followingCount: Int! } type PageInfoGQL {