For read operations, viewModelScope usually works fine. If the user navigates away from our activity or fragment, most likely we no longer need the data that we are trying to load. Canceling the CoroutineScope may save us some CPU time, network bandwidth, etc.
However, typically a write operation is one that we want to have succeed, even if the user navigates away. Just because they were quick to tap the BACK button does not mean that they want to lose the data they just entered and asked to save to the database or server.
There are a few approaches for addressing this problem.