Adding multiple values from multiselect to rest API call

I have been looking at this guide, where it's described how to use multiple selected values from a multiselect in an SQL statement.:
https://docs.retool.com/docs/working-with-select-components

I need to do a similar thing, but to a rest API, that looks like:


Today the values are added as an array inside a filter in the request.
For each value selected it should create a statement like: Location_Code eq 'valueX' so it would look like:
"Location_Code eq 'value1' OR Location_Code eq 'value2'

Hi @it-uno! Not entirely sure what your syntax needs to be here but have you tried {{ multiselectListbox1.value.join(" OR Location_Code eq ") }}?

If you need to add in the quotes you might also try

{{ multiselectListbox1.value.map(value => `'${value}'`).join(" OR Location_Code eq ") }}