diff --git a/src/index.tsx b/src/index.tsx index dfd37eb..93b6516 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3214,7 +3214,12 @@ export type GetFeedQuery = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number; username: string }; + user: { + __typename?: "UserGQL"; + id: number; + username: string; + profileImageUri?: string | null; + }; }>; }>; pageInfo: { @@ -3273,7 +3278,12 @@ export type VideoCardFieldsFragment = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number; username: string }; + user: { + __typename?: "UserGQL"; + id: number; + username: string; + profileImageUri?: string | null; + }; }>; }; @@ -3341,7 +3351,12 @@ export type GetVideoFeedQuery = { __typename?: "ReactionGQL"; videoId: number; reaction: ReactionEnum; - user: { __typename?: "UserGQL"; id: number; username: string }; + user: { + __typename?: "UserGQL"; + id: number; + username: string; + profileImageUri?: string | null; + }; }>; }>; pageInfo: { @@ -5039,6 +5054,7 @@ export const VideoCardFieldsFragmentDoc = gql` user { id username + profileImageUri } reaction } diff --git a/src/operations/feed.gql b/src/operations/feed.gql index a077bc9..a9c605f 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -63,6 +63,7 @@ fragment VideoCardFields on VideoGQL { user { id username + profileImageUri } reaction }