Compare commits
No commits in common. "14863e33570f8ee9fbc680cd32f8d89f2ba0eb08" and "bacd9e77f0cd0116d7b39f023b4e6049fd0cd0ed" have entirely different histories.
14863e3357
...
bacd9e77f0
@ -2255,7 +2255,6 @@ export type GetShotsWithMetadataQueryVariables = Exact<{
|
||||
filterInput: FilterInput;
|
||||
shotsPagination?: InputMaybe<GetShotsPagination>;
|
||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
ids?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||
}>;
|
||||
|
||||
export type GetShotsWithMetadataQuery = {
|
||||
@ -2263,7 +2262,6 @@ export type GetShotsWithMetadataQuery = {
|
||||
getShotsWithMetadata: {
|
||||
__typename?: "GetShotsResult";
|
||||
count?: number | null;
|
||||
ids: Array<number>;
|
||||
shots: Array<{
|
||||
__typename?: "ShotGQL";
|
||||
id: number;
|
||||
@ -3495,19 +3493,16 @@ export const GetShotsWithMetadataDocument = gql`
|
||||
$filterInput: FilterInput!
|
||||
$shotsPagination: GetShotsPagination
|
||||
$limit: Int
|
||||
$ids: [Int!]
|
||||
) {
|
||||
getShotsWithMetadata(
|
||||
filterInput: $filterInput
|
||||
shotsPagination: $shotsPagination
|
||||
limit: $limit
|
||||
ids: $ids
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
...ShotWithAllFeatures
|
||||
}
|
||||
ids
|
||||
}
|
||||
}
|
||||
${ShotWithAllFeaturesFragmentDoc}
|
||||
@ -3528,7 +3523,6 @@ export const GetShotsWithMetadataDocument = gql`
|
||||
* filterInput: // value for 'filterInput'
|
||||
* shotsPagination: // value for 'shotsPagination'
|
||||
* limit: // value for 'limit'
|
||||
* ids: // value for 'ids'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -21,19 +21,16 @@ query GetShotsWithMetadata(
|
||||
$filterInput: FilterInput!
|
||||
$shotsPagination: GetShotsPagination
|
||||
$limit: Int
|
||||
$ids: [Int!]
|
||||
) {
|
||||
getShotsWithMetadata(
|
||||
filterInput: $filterInput
|
||||
shotsPagination: $shotsPagination
|
||||
limit: $limit
|
||||
ids: $ids
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
...ShotWithAllFeatures
|
||||
}
|
||||
ids
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user