diff --git a/src/index.tsx b/src/index.tsx index b9da9cb..dfd37eb 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3210,6 +3210,12 @@ export type GetFeedQuery = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number; username: string }; + }>; }>; pageInfo: { __typename?: "PageInfoGQL"; @@ -3263,6 +3269,12 @@ export type VideoCardFieldsFragment = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number; username: string }; + }>; }; export type GetVideoFeedQueryVariables = Exact<{ @@ -3325,6 +3337,12 @@ export type GetVideoFeedQuery = { status: ProcessingStatusEnum; }>; } | null; + reactions: Array<{ + __typename?: "ReactionGQL"; + videoId: number; + reaction: ReactionEnum; + user: { __typename?: "UserGQL"; id: number; username: string }; + }>; }>; pageInfo: { __typename?: "PageInfoGQL"; @@ -5016,6 +5034,14 @@ export const VideoCardFieldsFragmentDoc = gql` status } } + reactions { + videoId + user { + id + username + } + reaction + } } `; export const MedalFieldsFragmentDoc = gql` diff --git a/src/operations/feed.gql b/src/operations/feed.gql index 0e5b7bd..a077bc9 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -58,6 +58,14 @@ fragment VideoCardFields on VideoGQL { status } } + reactions { + videoId + user { + id + username + } + reaction + } } query GetVideoFeed(