Right now the workflow, wrt adding the queries to the dynatable object seems to be . ``` dynatable.queries.add("key1", value1); dynatable.queries.add("key2", value2); ``` if in the UI , the key2 field was removed, the query entry would also have to be removed before calling dynatable.process. so, rather than calling ``` dynatable.queries.remove("key1") and // calling remove on all fields, ``` there should be something like ``` dynatable.queries.clear() // This sets the queries to a fresh initial state ```