Compare commits

...

2 Commits

Author SHA1 Message Date
c8cf97421b Merge pull request 'Add id to shots: video items to prevent cache merge issues' (#72) from loewy/add-id-to-fix-cache-merging-issue into master
Reviewed-on: #72
2024-10-07 22:15:38 -06:00
9718137ad3 add id to prevent cache merge issues
All checks were successful
Tests / Tests (pull_request) Successful in 8s
2024-10-07 21:14:47 -07:00
2 changed files with 5 additions and 0 deletions

View File

@ -2449,6 +2449,7 @@ export type GetShotsWithMetadataQuery = {
user?: { __typename?: "UserGQL"; id: number } | null;
video?: {
__typename?: "VideoGQL";
id: number;
stream?: {
__typename?: "UploadStreamGQL";
resolution: {
@ -2507,6 +2508,7 @@ export type GetShotsByIdsQuery = {
user?: { __typename?: "UserGQL"; id: number } | null;
video?: {
__typename?: "VideoGQL";
id: number;
stream?: {
__typename?: "UploadStreamGQL";
resolution: {
@ -2558,6 +2560,7 @@ export type ShotWithAllFeaturesFragment = {
user?: { __typename?: "UserGQL"; id: number } | null;
video?: {
__typename?: "VideoGQL";
id: number;
stream?: {
__typename?: "UploadStreamGQL";
resolution: {
@ -3150,6 +3153,7 @@ export const ShotWithAllFeaturesFragmentDoc = gql`
}
falsePositiveScore
video {
id
stream {
resolution {
width

View File

@ -67,6 +67,7 @@ fragment ShotWithAllFeatures on ShotGQL {
}
falsePositiveScore
video {
id
stream {
resolution {
width