Hello,
We are migrating from WC1 V1 to V3, and so far we have been iterating through OGS updates by specifying updatedDate
in the query
field and sorting by updateDate
, for example:
{ "pagination": {
"currentPage": 1,
"itemsPerPage": 20
}, "sort": [
{ "columnName": "updateDate", "order": "ASCENDING" }
], "query": "updateDate >= '2025-09-23T07:54:47.2449730Z'"
}
Could you please advise on the recommended way to achieve the same in V3?
It looks like we need to use RANGE
to filter by updateDate
, but it seems that sorting by updateDate
is not supported.