Hi. I have a repeater field which contains FieldtypeOptions field with 4 options. How can I sort results in find() by presence of the values?
# help_roles field options:
1=artist
2=leader
3=volunteer
4=sponsor
Lets assume I want to sort results by artists. Tried this one but it only filters records by value 1:
wire('pages')->find('template=repeater_requests, start=1, limit=20, sort=(help_roles=1)');
Any ideas?