Make startDatetime and endDatetime optional

This commit is contained in:
2024-09-20 22:29:18 -06:00
parent ab61894373
commit 90685cfdbf
2 changed files with 4 additions and 4 deletions

View File

@@ -96,8 +96,8 @@ input EnumAggregation {
}
input DatetimeRangeAggregationInput {
startDatetime: DateTime!
endDatetime: DateTime!
startDatetime: DateTime = null
endDatetime: DateTime = null
interval: TimeInterval!
feature: String! = "created_at"
}