Am I supposed to trim or filter undefined / null / empty strings from query keys?
The UI might not always have optional variables passed into the query key, so the result would be
Is this okay? My first assumption is that - it is fine and it would be more overhead to filter falsy values out.
["foo", "bar", ""] or ["foo", "bar", null]Is this okay? My first assumption is that - it is fine and it would be more overhead to filter falsy values out.