I am curious if queries (in my current case, Firestore) could be saved without running them retrieving data? This bothers me the most when I query all or most of a collection. I don't need all that data now, I am only changing a param, etc. Is it possible to make this an option to only Save, not Save and Run?
The easiest way to do this is to change the query from "run query automatically when inputs change" to "run query only when manually triggered". That'll enable the "save" rather than "save and run" button and won't update the app's model until the query is explicitly run.