Closed
Description
Currently, filter values are split by comma into separate FiterQuery
s. This makes things like this possible:
?filter[attr]=abc,like:def
But, this doesn't make much sense and the proper query should be:
?filter[attr]=abc&filter[attr]=like:def
It also prevents custom queries from being picked up using IQueryAccessor.GetRequired<>()