Multiple filters from listview indicator?

Is it possible to set multiple filters from an indicator on the listview? I’ve tried all sorts of combinations but nothing seems to work except a single string to make a single filter.

The filter string appears to be run through JSON.parse in list_filter.js but a json array inside a string doesn’t work either.

3rd element of the below array is the filter used when clicking on the indicator:
["Open", "darkgrey", "status,=,Open"]

I just found the syntax for this:

["Overdue", "red", `status,=,Open|date,<,${frappe.datetime.get_today()}`]

or

["Overdue", "red", "status,=,Open|date,<,Today"]