One process in our product updates an existing order through the REST API, then sends a notification to our app to display the order on the device. The problem is that when we call getOrder on the OrderConnector (v3), often it returns an old version of the order, so we end up showing the wrong data to the user.
We tried to work around it by adding a 10 second delay before sending the notification after updating the order through the REST API, but even that is not 100% reliable. Is there any way to force the OrderConnector to load the latest version of the order?