Understanding Query Key Objects
I just started using react-query and see most examples with simple query keys containing a single value.
Let's say I have the following:
Then if I want to fetch all squares that are either
does this store all color combinations in their own query?
And is this the same if I have more filters?
Let's say I have the following:
Then if I want to fetch all squares that are either
blue OR red would I dodoes this store all color combinations in their own query?
And is this the same if I have more filters?