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