For REST APIs generated using the API generator, there is a list of commands available with examples (see screenshot).
I was gonna ask if there is a way to filter by multiple values of the same column:
../data?columnName=value1,value2,...
I think I figured it out by simply repeating the column name and the value:
../data?columnName=value1&columnName=value2&columnName=value3&...
While this does achieve the output I need, I still wonder if there is a simpler way to go about it, since building the query this way feels too complex. It would be much simpler to simply pass a column name and a comma separated list of values for it.
Basically, something similar to this SQL query:
SELECT * FROM data WHERE columnName IN (value1,value2,value3);
Any suggestions? Thanks.