Compare commits
8 Commits
kat/use-fr
...
kat/add-da
Author | SHA1 | Date | |
---|---|---|---|
890bea2571 | |||
f57f6dc32d | |||
14863e3357 | |||
|
58f01c567c | ||
937368c753 | |||
d8c11875d4 | |||
bacd9e77f0 | |||
69d755ba32 |
@@ -73,6 +73,7 @@ export type AggregationInput =
|
|||||||
| { bucketSet?: never; datetimeRange?: never; enum: EnumAggregation };
|
| { bucketSet?: never; datetimeRange?: never; enum: EnumAggregation };
|
||||||
|
|
||||||
export enum AlignedIntervalEnum {
|
export enum AlignedIntervalEnum {
|
||||||
|
Day = "DAY",
|
||||||
Month = "MONTH",
|
Month = "MONTH",
|
||||||
Week = "WEEK",
|
Week = "WEEK",
|
||||||
Year = "YEAR",
|
Year = "YEAR",
|
||||||
@@ -1774,6 +1775,7 @@ export type QueryGetShotsByIdsArgs = {
|
|||||||
|
|
||||||
export type QueryGetShotsWithMetadataArgs = {
|
export type QueryGetShotsWithMetadataArgs = {
|
||||||
filterInput: FilterInput;
|
filterInput: FilterInput;
|
||||||
|
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
||||||
limit?: Scalars["Int"]["input"];
|
limit?: Scalars["Int"]["input"];
|
||||||
shotsPagination?: InputMaybe<GetShotsPagination>;
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
||||||
};
|
};
|
||||||
@@ -2254,6 +2256,7 @@ export type GetShotsWithMetadataQueryVariables = Exact<{
|
|||||||
filterInput: FilterInput;
|
filterInput: FilterInput;
|
||||||
shotsPagination?: InputMaybe<GetShotsPagination>;
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
||||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
ids?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetShotsWithMetadataQuery = {
|
export type GetShotsWithMetadataQuery = {
|
||||||
@@ -2261,6 +2264,7 @@ export type GetShotsWithMetadataQuery = {
|
|||||||
getShotsWithMetadata: {
|
getShotsWithMetadata: {
|
||||||
__typename?: "GetShotsResult";
|
__typename?: "GetShotsResult";
|
||||||
count?: number | null;
|
count?: number | null;
|
||||||
|
ids: Array<number>;
|
||||||
shots: Array<{
|
shots: Array<{
|
||||||
__typename?: "ShotGQL";
|
__typename?: "ShotGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -3492,16 +3496,19 @@ export const GetShotsWithMetadataDocument = gql`
|
|||||||
$filterInput: FilterInput!
|
$filterInput: FilterInput!
|
||||||
$shotsPagination: GetShotsPagination
|
$shotsPagination: GetShotsPagination
|
||||||
$limit: Int
|
$limit: Int
|
||||||
|
$ids: [Int!]
|
||||||
) {
|
) {
|
||||||
getShotsWithMetadata(
|
getShotsWithMetadata(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
shotsPagination: $shotsPagination
|
shotsPagination: $shotsPagination
|
||||||
limit: $limit
|
limit: $limit
|
||||||
|
ids: $ids
|
||||||
) {
|
) {
|
||||||
count
|
count
|
||||||
shots {
|
shots {
|
||||||
...ShotWithAllFeatures
|
...ShotWithAllFeatures
|
||||||
}
|
}
|
||||||
|
ids
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
${ShotWithAllFeaturesFragmentDoc}
|
${ShotWithAllFeaturesFragmentDoc}
|
||||||
@@ -3522,6 +3529,7 @@ export const GetShotsWithMetadataDocument = gql`
|
|||||||
* filterInput: // value for 'filterInput'
|
* filterInput: // value for 'filterInput'
|
||||||
* shotsPagination: // value for 'shotsPagination'
|
* shotsPagination: // value for 'shotsPagination'
|
||||||
* limit: // value for 'limit'
|
* limit: // value for 'limit'
|
||||||
|
* ids: // value for 'ids'
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
@@ -21,16 +21,19 @@ query GetShotsWithMetadata(
|
|||||||
$filterInput: FilterInput!
|
$filterInput: FilterInput!
|
||||||
$shotsPagination: GetShotsPagination
|
$shotsPagination: GetShotsPagination
|
||||||
$limit: Int
|
$limit: Int
|
||||||
|
$ids: [Int!]
|
||||||
) {
|
) {
|
||||||
getShotsWithMetadata(
|
getShotsWithMetadata(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
shotsPagination: $shotsPagination
|
shotsPagination: $shotsPagination
|
||||||
limit: $limit
|
limit: $limit
|
||||||
|
ids: $ids
|
||||||
) {
|
) {
|
||||||
count
|
count
|
||||||
shots {
|
shots {
|
||||||
...ShotWithAllFeatures
|
...ShotWithAllFeatures
|
||||||
}
|
}
|
||||||
|
ids
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -11,6 +11,7 @@ type Query {
|
|||||||
): [MakePercentageIntervalGQL!]!
|
): [MakePercentageIntervalGQL!]!
|
||||||
getShotsWithMetadata(
|
getShotsWithMetadata(
|
||||||
filterInput: FilterInput!
|
filterInput: FilterInput!
|
||||||
|
ids: [Int!] = null
|
||||||
shotsPagination: GetShotsPagination = null
|
shotsPagination: GetShotsPagination = null
|
||||||
limit: Int! = 500
|
limit: Int! = 500
|
||||||
): GetShotsResult!
|
): GetShotsResult!
|
||||||
@@ -124,6 +125,7 @@ enum AlignedIntervalEnum {
|
|||||||
MONTH
|
MONTH
|
||||||
YEAR
|
YEAR
|
||||||
WEEK
|
WEEK
|
||||||
|
DAY
|
||||||
}
|
}
|
||||||
|
|
||||||
input FilterInput @oneOf {
|
input FilterInput @oneOf {
|
||||||
|
Reference in New Issue
Block a user