I'm getting a "The end instant must be greater or equal to the start" error when running my query. I've seen posts about this error but am unable to understand how I should update my query. When I update the period to `PT01H` it works, but for a 1 minute period I can't get it work (tried a bunch of different time ranges). It is possible that there is no data for some minutes in the interval, could that be the problem? Thank you for your help, the full query is below.
{
"dataSource": "experiment_123",
"granularity": {
"type": "period",
"period": "PT60S",
"timeZone": "UTC",
"origin": "2017-03-04T08:00:00+00:00"
},
"intervals": ["2017-03-04T15:00:00+00:00/2017-03-04T20:00:00+00:00"],
"context": {
"timeout": 30000
},
"queryType": "timeseries",
"filter": {
"type": "or",
"fields": [{
"type": "selector",
"dimension": "policy_permitted",
"value": "PERMITTED"
}, {
"type": "selector",
"dimension": "policy_permitted",
"value": "PERMITTED"
}]
},
"aggregations": [{
"type": "longSum",
"name": "count",
"fieldName": "count"
}]
}