Compare commits
1 Commits
148f5362f0
...
75a1d6c73a
Author | SHA1 | Date | |
---|---|---|---|
75a1d6c73a |
@ -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
|
||||
|
@ -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