query_options_filter_compound_and_timepoint = {
return {
method: 'POST',
body: JSON.stringify({
condition: {
and: [
{exactSearch: [{ column: ["Treatment compound"] }, selected_compounds]},
{containedIn: [{ column: ["Treatment timepoint"] }, selected_timepoints]},
{containedIn: [{ column: ["Control compound"] }, selected_controls]},
{containedIn: [{ column: ["Study"] }, selected_studies]},
]
}
})
}
}