From 44ddc732a1631ee5e9704ed93390cd40cd1d91ef Mon Sep 17 00:00:00 2001 From: Volodymyr Smolianinov Date: Thu, 24 Oct 2024 13:50:52 -0600 Subject: [PATCH] Fix cache merge (#87) Co-authored-by: Kat Huang Reviewed-on: https://dev.railbird.ai/railbird/railbird-gql/pulls/87 Co-authored-by: Volodymyr Smolianinov Co-committed-by: Volodymyr Smolianinov --- src/index.tsx | 7 ++++++- src/operations/feed.gql | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 4b766f9..d298fe6 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2700,7 +2700,11 @@ export type GetFeedQuery = { elapsedTime?: number | null; tableSize: number; owner?: { __typename?: "UserGQL"; username: string } | null; - stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + isCompleted: boolean; + } | null; tags: Array<{ __typename?: "VideoTag"; name: string; @@ -4053,6 +4057,7 @@ export const GetFeedDocument = gql` elapsedTime screenshotUri stream { + id isCompleted } tableSize diff --git a/src/operations/feed.gql b/src/operations/feed.gql index 32c5523..80814e5 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -21,6 +21,7 @@ query GetFeed( elapsedTime screenshotUri stream { + id isCompleted } tableSize