I have a query which, under certain conditions, must be extended by several .eq´s.
So I first simply wrote out all permutations of the query. That looked a bit too long, so I
tried to wrap the whole query into a string I actively build, but that didn´t work. Then I tried a main query and additional queries and under same conditions execute them using .and.
That works, but I noticed a substantial slower result (almost twice as long) compared to the fully written out queries I started out with.
Question: is this so, or is my network suddenly slower?