I can see theres a limit of 3 on `sort_by` . Does ...
# community-help
j
I can see theres a limit of 3 on
sort_by
. Does this include three fields using ASC/DESC? If we wanted to exceed this, I'm assuming we would need to create a separate collection? Collection A = 1,2,3 sort_by / Collection B = 4,5,6 sort_by.
j
The limit is actually a limit of 3 fields for a single search query. You can sort on any number of fields across searches
So for eg, if you’re sorting by say name, price, rating, proximity and asc/desc on each of those, you can still do this on a single collection, since you’ll only be sorting on any one of those fields in a give search query
👍🏼 1