If I have the following request and I want to stop a refetch could I write the ,following command to remove the query?
["streets",{"streetid":15},"waypoints","power",{"rain":1,"steepfactor":2}]
queryClient.removeQueries("streets", streetid, "waypoints", "power");
can I pass more than two arguments to removeQueries?
or is it just possible to pass a wildcard and power to remove old power ones?