Debounce calls to a mutation without doing so for the optimistic update
In the component we use a mutation like this:
We want the optimistic update to be triggered on every keystroke but it would be great to debounce server mutation calls to save some costs, I just have no idea how to do this...

