Is it possible to have a search form that might have Name field and a Keyword field:
<label for="name-input">Name</label>
<input type="text" name="query_name" id="name-input">
<label for="keyword-input">Keyword</label>
<input type="text" name="query_keyword" id="keyword-input">
So they are both query searches but when the query_name is given it will do a keyword search (e.g. Anderson) only on the Name meta fields of each indexed document, and query_keyword when given will do a search on all other fields.
I only know how to search using one query parameter:
https://{DOMAIN}/s/search.json?collection=supervisors&query=Anderson&profile=_default_preview
However, if I apply this across all meta fields it will bring back not only those named Anderson, but also e.g. Anderson Building, Anderson referenced in their description (e.g. collaborated with an Anderson), etc. Not sure if it’s possible to have multiple keywork queries but applied to different fields in each indexed document.