I need to pass in values from the request params to the Suite QL "IN" clause. How should I structure it? .split doesn't work.
n
Nathan L
04/20/2023, 7:52 PM
I usually build the query string in template strings using the backtick key ``
Then you can reference variables inside the string with ${}
Here is an example one from today
n
NickSuite
04/20/2023, 7:59 PM
I am familiar with this. What about using "IN" clause?