Add shots to runs operation to get the id #162

Merged
loewy merged 1 commits from loewy/add-shots-in-runs into master 2025-02-20 15:02:44 -07:00
2 changed files with 9 additions and 0 deletions

View File

@ -3407,6 +3407,7 @@ export type GetRunsForHighlightsQuery = {
runLength: number; runLength: number;
userId: number; userId: number;
videoId: number; videoId: number;
shots: Array<{ __typename?: "ShotGQL"; videoId: number; id: number }>;
}>; }>;
}; };
}; };
@ -5769,6 +5770,10 @@ export const GetRunsForHighlightsDocument = gql`
runLength runLength
userId userId
videoId videoId
shots {
videoId
id
}
} }
runIds runIds
} }

View File

@ -14,6 +14,10 @@ query GetRunsForHighlights(
runLength runLength
userId userId
videoId videoId
shots {
videoId
id
}
} }
runIds runIds
} }