Consider an Algolia index filled with objects like this:
{
"objectID": 1,
"name": "My project title",
"contributor_ids": [12, 42, 34]
}
Does this query get all objects that have contributor_ids 42 OR contributor_ids=12 ?
"numericFilters: 'contributor_ids=42, contributor_ids=12"
And if so, what is the right query to get all objects that have contributor_ids 42 AND contributor_ids=12 ?