For example, I have a record that I don't want to sync offline or preserve with persistence for future write. Is there a way to cancel this?
firebase.firestore().collection('test').doc('mydoc').set({value: 123});
NOTE: This is diferent from this question because I want to cancel a write, not cached data. Because I want persistent data, but not for a particular write.
For example, I send some data, have no internet for half an hour, with the page still open (on a desktop) I want to cancel the write to the server.