
So, as bool_filter in URL is not accepting only 1. Like if there are two filter 1 and 2. bool_filter needs to have both 1 and 2 in logic. if we write simply 1 it will not take it.
So, currently I have written bool_filter as 1 OR (2 AND NOT(2)) and vice versa for 2.
But this does not sound appropriate to end client.
So, is there any other method to do so by URL parameters?
2 件の回答
You want to apply filter to be 1 and not 2 or 2 and not 1 ?
Well then it could be something like OR(1 AND NOT(2),2 AND NOT(1)).