Compare commits

..

No commits in common. "433dfdaf7480fbbf162bfb3a602993e82d89b5bf" and "b3259dac1f1b03c49e61089ac7e2e60ac03ba623" have entirely different histories.

2 changed files with 0 additions and 6 deletions

View File

@ -2891,7 +2891,6 @@ export type GetShotsWithMetadataFilterResultQueryVariables = Exact<{
shotsOrdering?: InputMaybe<GetShotsOrdering>;
limit?: InputMaybe<Scalars["Int"]["input"]>;
ids?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
countRespectsLimit?: InputMaybe<Scalars["Boolean"]["input"]>;
}>;
export type GetShotsWithMetadataFilterResultQuery = {
@ -4673,14 +4672,12 @@ export const GetShotsWithMetadataFilterResultDocument = gql`
$shotsOrdering: GetShotsOrdering
$limit: Int
$ids: [Int!]
$countRespectsLimit: Boolean
) {
getOrderedShots(
filterInput: $filterInput
shotsOrdering: $shotsOrdering
limit: $limit
ids: $ids
countRespectsLimit: $countRespectsLimit
) {
count
shots {
@ -4708,7 +4705,6 @@ export const GetShotsWithMetadataFilterResultDocument = gql`
* shotsOrdering: // value for 'shotsOrdering'
* limit: // value for 'limit'
* ids: // value for 'ids'
* countRespectsLimit: // value for 'countRespectsLimit'
* },
* });
*/

View File

@ -67,14 +67,12 @@ query GetShotsWithMetadataFilterResult(
$shotsOrdering: GetShotsOrdering
$limit: Int
$ids: [Int!]
$countRespectsLimit: Boolean
) {
getOrderedShots(
filterInput: $filterInput
shotsOrdering: $shotsOrdering
limit: $limit
ids: $ids
countRespectsLimit: $countRespectsLimit
) {
count
shots {