Hi there,
Found a workaround to fetch change_events for LIMIT more than 10000, suggested by
this doc from Google which states,
The query must also include a LIMIT clause restricting results to at most 10,000 rows. If you're interested in more than 10,000 results, make a note of the timestamp of the last entry in the returned result set, and then set your date range on the following query to start after that time to continue where you left off.
But the `change_date_time` property of `change_event` returned by ChangeEventService does have same value for multiple entries in the result set. In such case, how does the suggested step (to start after that time to continue where you left off ) apply?