Description
SortBy should allow for multiple sort attributes at query time.
Basic example
instantsearch.widgets.sortBy({
container: '#sort-by',
items: [
{ value: 'clothes', label: 'Relevant' }, // default index
{
value: 'clothes:price:asc,created_at:desc',
label: 'Ascending price then descending creation time using query time sort',
},
],
}),
This sort formula is probably not ideal for parsing, it is just an example.