is it possible to run a boolean search with one input element?
For example: We have a candidate database. Each candidate is tagged with skills. Can you allow users to search for candidates using AND/OR and NOT operators to specify their search? Like show me all candidates who are tagged with “Java” AND “C#” OR “Javascript”. Users should write that in only one input element.
Set skills field as a list
Use a multisdropdown element so that users can select various skills
When searching build your expression with filtering’s advanced constraint
This is not exactly what I was looking for. In your example a candidate must have all skills which are selected from the multidropdown. So an OR-connection is not possible.