How to implement "Save" button?

Currently when I change data in any input the changes immediately goes to the server and trigger mutation.

I want to add “Save” button so changes wouldn’t go to the server immediately after input change.

How can I do this? Do I need some kind of store for unsaved data? Do I need to use additional state manager? Where I can find some examples to similar functional?