Compare commits
1 Commits
148f5362f0
...
75a1d6c73a
Author | SHA1 | Date | |
---|---|---|---|
75a1d6c73a |
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user