Arrays as parameters in query lambda?

Hi, I would need to implement something like this in a query lambda:

...
WHERE field in (value1, value2, value3)

Is there a way to have a parameter that is an array e.g. par = (value1, value2, value3,..valueN)?
Or an alternative method to achieve the same?

I could think of defining N parameters par1 = value1, par2 = value2 etc. but does not look very elegant, specially when having a lot of values to filter on.

Thanks!

1 Like

Hey! Thank you for the question. There’s a pervious similar question that was answered here - Can query lambdas be used as a set of values for an IN statement
Please let me know if you have any follow-up questions.

1 Like