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

View File

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