I am creating a web CRUD application that, after processing internal logic, will publish events to other systems in order to update their data.
I am in the first step of implementing CQRS and it sounds weird that I have to create specific commands for all possible intentions of the user in a Form where I only have one 'save' button. That means a lot of commands (for each property or value object) to capture an intention not needed in my requirements but needed in the upcoming projects that will subscribe to it. I am a fan of doing ONLY what my bounded context requires.
Another thing to take into account: I have to use session to compare whether the data has changed or not. Faking the data after saving it will hide concurrency situations showing wrong data in the UI.
EDIT: I just found this thread where Greg Young suggests that some screens are just CRUD and there's nothing bad in making the update as default behavior.