Compare commits

..

1 Commits

Author SHA1 Message Date
75a1d6c73a Followers and following
All checks were successful
Tests / Tests (pull_request) Successful in 21s
2024-10-29 15:46:16 -06:00
2 changed files with 3 additions and 0 deletions

View File

@ -2811,6 +2811,7 @@ export type GetShotsWithVideoGqlQuery = {
__typename?: "Query";
getShotsWithMetadata: {
__typename?: "GetShotsResult";
ids: Array<number>;
shots: Array<{
__typename?: "ShotGQL";
id: number;
@ -4477,6 +4478,7 @@ export type UpdateShotAnnotationsMutationOptions = Apollo.BaseMutationOptions<
export const GetShotsWithVideoGqlDocument = gql`
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
ids
shots {
id
videoId

View File

@ -42,6 +42,7 @@ mutation UpdateShotAnnotations(
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
ids
shots {
id
videoId