I'm trying to connect and run the query to get particular id values in node-red using the post method but facing a problem in attaching post data in the query.
Tried in the following way
API request flow
Query forming using function node
After form, the query i need query formation like this
in where condition c.externalIds.customer_master in ['111','112','113']
like wise
but I'm getting
c.externalIds.customer_master in 111,112,113 like wise
and my post node is
I did some tricks in form the query like below
Concatenated the array values using array.join('","')
${msgNew.join('","')}
then in appended and prepended array open and close symbol
[${msgNew.join('","')}]
Now I got the result expected