Compare commits
5 Commits
kat/get-id
...
kat/add-da
Author | SHA1 | Date | |
---|---|---|---|
890bea2571 | |||
f57f6dc32d | |||
14863e3357 | |||
|
58f01c567c | ||
937368c753 |
@@ -73,6 +73,7 @@ export type AggregationInput =
|
||||
| { bucketSet?: never; datetimeRange?: never; enum: EnumAggregation };
|
||||
|
||||
export enum AlignedIntervalEnum {
|
||||
Day = "DAY",
|
||||
Month = "MONTH",
|
||||
Week = "WEEK",
|
||||
Year = "YEAR",
|
||||
@@ -2255,6 +2256,7 @@ 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 = {
|
||||
@@ -2262,6 +2264,7 @@ export type GetShotsWithMetadataQuery = {
|
||||
getShotsWithMetadata: {
|
||||
__typename?: "GetShotsResult";
|
||||
count?: number | null;
|
||||
ids: Array<number>;
|
||||
shots: Array<{
|
||||
__typename?: "ShotGQL";
|
||||
id: number;
|
||||
@@ -3493,16 +3496,19 @@ 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}
|
||||
@@ -3523,6 +3529,7 @@ export const GetShotsWithMetadataDocument = gql`
|
||||
* filterInput: // value for 'filterInput'
|
||||
* shotsPagination: // value for 'shotsPagination'
|
||||
* limit: // value for 'limit'
|
||||
* ids: // value for 'ids'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
@@ -21,16 +21,19 @@ query GetShotsWithMetadata(
|
||||
$filterInput: FilterInput!
|
||||
$shotsPagination: GetShotsPagination
|
||||
$limit: Int
|
||||
$ids: [Int!]
|
||||
) {
|
||||
getShotsWithMetadata(
|
||||
filterInput: $filterInput
|
||||
shotsPagination: $shotsPagination
|
||||
limit: $limit
|
||||
ids: $ids
|
||||
) {
|
||||
count
|
||||
shots {
|
||||
...ShotWithAllFeatures
|
||||
}
|
||||
ids
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -125,6 +125,7 @@ enum AlignedIntervalEnum {
|
||||
MONTH
|
||||
YEAR
|
||||
WEEK
|
||||
DAY
|
||||
}
|
||||
|
||||
input FilterInput @oneOf {
|
||||
|
Reference in New Issue
Block a user