Compare commits
No commits in common. "0120c15064ed6828cc19855f3d01780e022a5ff6" and "c4868e7ebe7b83fff5c069130d1579ad227f367f" have entirely different histories.
0120c15064
...
c4868e7ebe
@ -3008,14 +3008,12 @@ export type GetShotsWithJustIdsQueryVariables = Exact<{
|
|||||||
filterInput: FilterInput;
|
filterInput: FilterInput;
|
||||||
shotsOrdering?: InputMaybe<GetShotsOrdering>;
|
shotsOrdering?: InputMaybe<GetShotsOrdering>;
|
||||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
countRespectsLimit?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetShotsWithJustIdsQuery = {
|
export type GetShotsWithJustIdsQuery = {
|
||||||
__typename?: "Query";
|
__typename?: "Query";
|
||||||
getOrderedShots: {
|
getOrderedShots: {
|
||||||
__typename?: "GetShotsResult";
|
__typename?: "GetShotsResult";
|
||||||
count?: number | null;
|
|
||||||
shots: Array<{ __typename?: "ShotGQL"; id: number; videoId: number }>;
|
shots: Array<{ __typename?: "ShotGQL"; id: number; videoId: number }>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -5051,15 +5049,12 @@ export const GetShotsWithJustIdsDocument = gql`
|
|||||||
$filterInput: FilterInput!
|
$filterInput: FilterInput!
|
||||||
$shotsOrdering: GetShotsOrdering
|
$shotsOrdering: GetShotsOrdering
|
||||||
$limit: Int
|
$limit: Int
|
||||||
$countRespectsLimit: Boolean
|
|
||||||
) {
|
) {
|
||||||
getOrderedShots(
|
getOrderedShots(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
shotsOrdering: $shotsOrdering
|
shotsOrdering: $shotsOrdering
|
||||||
limit: $limit
|
limit: $limit
|
||||||
countRespectsLimit: $countRespectsLimit
|
|
||||||
) {
|
) {
|
||||||
count
|
|
||||||
shots {
|
shots {
|
||||||
id
|
id
|
||||||
videoId
|
videoId
|
||||||
@ -5083,7 +5078,6 @@ export const GetShotsWithJustIdsDocument = gql`
|
|||||||
* filterInput: // value for 'filterInput'
|
* filterInput: // value for 'filterInput'
|
||||||
* shotsOrdering: // value for 'shotsOrdering'
|
* shotsOrdering: // value for 'shotsOrdering'
|
||||||
* limit: // value for 'limit'
|
* limit: // value for 'limit'
|
||||||
* countRespectsLimit: // value for 'countRespectsLimit'
|
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
@ -66,15 +66,12 @@ query GetShotsWithJustIds(
|
|||||||
$filterInput: FilterInput!
|
$filterInput: FilterInput!
|
||||||
$shotsOrdering: GetShotsOrdering
|
$shotsOrdering: GetShotsOrdering
|
||||||
$limit: Int
|
$limit: Int
|
||||||
$countRespectsLimit: Boolean
|
|
||||||
) {
|
) {
|
||||||
getOrderedShots(
|
getOrderedShots(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
shotsOrdering: $shotsOrdering
|
shotsOrdering: $shotsOrdering
|
||||||
limit: $limit
|
limit: $limit
|
||||||
countRespectsLimit: $countRespectsLimit
|
|
||||||
) {
|
) {
|
||||||
count
|
|
||||||
shots {
|
shots {
|
||||||
id
|
id
|
||||||
videoId
|
videoId
|
||||||
|
Loading…
Reference in New Issue
Block a user