Merge pull request 'Add count to GetShotsWithJustIds operation return' (#127) from loewy/add-count-to-getshots-with-just-ids into master
Reviewed-on: #127
This commit is contained in:
commit
0120c15064
@ -3008,12 +3008,14 @@ export type GetShotsWithJustIdsQueryVariables = Exact<{
|
||||
filterInput: FilterInput;
|
||||
shotsOrdering?: InputMaybe<GetShotsOrdering>;
|
||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
countRespectsLimit?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
}>;
|
||||
|
||||
export type GetShotsWithJustIdsQuery = {
|
||||
__typename?: "Query";
|
||||
getOrderedShots: {
|
||||
__typename?: "GetShotsResult";
|
||||
count?: number | null;
|
||||
shots: Array<{ __typename?: "ShotGQL"; id: number; videoId: number }>;
|
||||
};
|
||||
};
|
||||
@ -5049,12 +5051,15 @@ export const GetShotsWithJustIdsDocument = gql`
|
||||
$filterInput: FilterInput!
|
||||
$shotsOrdering: GetShotsOrdering
|
||||
$limit: Int
|
||||
$countRespectsLimit: Boolean
|
||||
) {
|
||||
getOrderedShots(
|
||||
filterInput: $filterInput
|
||||
shotsOrdering: $shotsOrdering
|
||||
limit: $limit
|
||||
countRespectsLimit: $countRespectsLimit
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
id
|
||||
videoId
|
||||
@ -5078,6 +5083,7 @@ export const GetShotsWithJustIdsDocument = gql`
|
||||
* filterInput: // value for 'filterInput'
|
||||
* shotsOrdering: // value for 'shotsOrdering'
|
||||
* limit: // value for 'limit'
|
||||
* countRespectsLimit: // value for 'countRespectsLimit'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@ -66,12 +66,15 @@ query GetShotsWithJustIds(
|
||||
$filterInput: FilterInput!
|
||||
$shotsOrdering: GetShotsOrdering
|
||||
$limit: Int
|
||||
$countRespectsLimit: Boolean
|
||||
) {
|
||||
getOrderedShots(
|
||||
filterInput: $filterInput
|
||||
shotsOrdering: $shotsOrdering
|
||||
limit: $limit
|
||||
countRespectsLimit: $countRespectsLimit
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
id
|
||||
videoId
|
||||
|
Loading…
Reference in New Issue
Block a user