Is it possible to replace the LABKEY.Filter.Types.IN filter on a query with a parameterized query instead?

LabKey Support Forum (Inactive)
Is it possible to replace the LABKEY.Filter.Types.IN filter on a query with a parameterized query instead? Leo Dashevskiy  2015-10-21 14:44
Status: Closed
 
I've already read the docs that you pointed to in your link, but still I don't understand, how exactly what I'm after can be achieved?

I mean, I can add the "parameters" config to my QueryWebPart instantiation:

qwpResponse = new LABKEY.QueryWebPart({
 ...
 parameters: { 'arm_accession/name': cohorts },
 queryName: responseParameterized,
 ...
});

where cohorts == 'a;b;c'


But how exactly should my SQL query be changed to capture the behavior of the "LABKEY.Filter.Types.IN" filter?!