Compare commits
No commits in common. "4d01e9814dcb67fd3c8fe55b5b0f51fb3c02c041" and "b0da48c4fb739c600b2e5bbeaf5a8fc18d6cc1b9" have entirely different histories.
4d01e9814d
...
b0da48c4fb
@ -2811,6 +2811,7 @@ export type GetShotsWithVideoGqlQuery = {
|
||||
__typename?: "Query";
|
||||
getShotsWithMetadata: {
|
||||
__typename?: "GetShotsResult";
|
||||
ids: Array<number>;
|
||||
shots: Array<{
|
||||
__typename?: "ShotGQL";
|
||||
id: number;
|
||||
@ -4467,6 +4468,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
|
||||
|
@ -42,6 +42,7 @@ mutation UpdateShotAnnotations(
|
||||
|
||||
query GetShotsWithVideoGql($filterInput: FilterInput!, $limit: Int) {
|
||||
getShotsWithMetadata(filterInput: $filterInput, limit: $limit) {
|
||||
ids
|
||||
shots {
|
||||
id
|
||||
videoId
|
||||
|
Loading…
Reference in New Issue
Block a user