RQ architecture suggestions
I'm having a bit of a dillema on how to structure my queries. I really love using queryOptions as it lets me override any of the options.
The problem with this approach is that you cant effectively use
The problem with this approach is that you cant effectively use
skipToken because I want to keep the variables as required. The only solution is to make the variables optional in which case I can make typescript happy with the usage, and then handle the skipToken within the getProjectQueryOpts - but it feels weird to do so....