Make startDatetime and endDatetime optional
This commit is contained in:
parent
ab61894373
commit
90685cfdbf
@ -144,10 +144,10 @@ export type DateRangeFilter = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type DatetimeRangeAggregationInput = {
|
export type DatetimeRangeAggregationInput = {
|
||||||
endDatetime: Scalars["DateTime"]["input"];
|
endDatetime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
feature?: Scalars["String"]["input"];
|
feature?: Scalars["String"]["input"];
|
||||||
interval: TimeInterval;
|
interval: TimeInterval;
|
||||||
startDatetime: Scalars["DateTime"]["input"];
|
startDatetime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DeployedConfigGql = {
|
export type DeployedConfigGql = {
|
||||||
|
@ -96,8 +96,8 @@ input EnumAggregation {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input DatetimeRangeAggregationInput {
|
input DatetimeRangeAggregationInput {
|
||||||
startDatetime: DateTime!
|
startDatetime: DateTime = null
|
||||||
endDatetime: DateTime!
|
endDatetime: DateTime = null
|
||||||
interval: TimeInterval!
|
interval: TimeInterval!
|
||||||
feature: String! = "created_at"
|
feature: String! = "created_at"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user