Compare commits

...

2 Commits

Author SHA1 Message Date
c2cb411469 Return usernamesAndIds
All checks were successful
Tests / Tests (pull_request) Successful in 16s
2024-10-24 23:41:52 -06:00
44ddc732a1 Fix cache merge (#87)
Co-authored-by: Kat Huang <kkathuang@gmail.com>
Reviewed-on: #87
Co-authored-by: Volodymyr Smolianinov <voidozzer@gmail.com>
Co-committed-by: Volodymyr Smolianinov <voidozzer@gmail.com>
2024-10-24 13:50:52 -06:00
3 changed files with 8 additions and 2 deletions

View File

@@ -2700,7 +2700,11 @@ export type GetFeedQuery = {
elapsedTime?: number | null; elapsedTime?: number | null;
tableSize: number; tableSize: number;
owner?: { __typename?: "UserGQL"; username: string } | null; owner?: { __typename?: "UserGQL"; username: string } | null;
stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null; stream?: {
__typename?: "UploadStreamGQL";
id: string;
isCompleted: boolean;
} | null;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
name: string; name: string;
@@ -4053,6 +4057,7 @@ export const GetFeedDocument = gql`
elapsedTime elapsedTime
screenshotUri screenshotUri
stream { stream {
id
isCompleted isCompleted
} }
tableSize tableSize

View File

@@ -21,6 +21,7 @@ query GetFeed(
elapsedTime elapsedTime
screenshotUri screenshotUri
stream { stream {
id
isCompleted isCompleted
} }
tableSize tableSize

View File

@@ -71,7 +71,7 @@ query getUsernamesAndFollowing(
) { ) {
followers followers
following following
usernames usernamesAndIds
} }
} }