I am trying to get a count of all instances in a view that have been updated since a point in time.
When using the /models/instances/list api call, I am able to filter LastUpdatedTime with
'filter': {
'range': {
'property': ['edge', 'lastUpdatedTime'],
'gt' : '2007-01-01T00:00:00+00:00'
}
However when I try to use this filter method in the /models/instances/aggregate api call, I am getting a 400 error. I have tried different permutations of what the correct property string lastUpdatedTime is without success. Any ideas?
I am able to filter by properties defined in the datamodel, but as I understand it LastUpdatedTime is not the same as a normal property