I pull data using axios into my Vue application. Example:
axios
.get(
"https://fback-sp.***/s/search.json?collection=courses&query=" +
query +
"&meta_subject" +
this.subject +
"&meta_level=" +
this.level +
"&meta_attendance="
etc.
I want to be able to query the field 'subject' with multiple options. So I would like the user to be able to pick say 'English' and 'Maths' and for the results to include everything with English and everything with Maths.
I have had a look at some documentation and see mentioned in the HTML Endpoint 'query_or'. Im not sure if this would be the correct way to tackle this or if it is something else. The other fields are only one selection at a time which works fine. Any help appreciated.