Is there a way to pass similar objects (which are simply data representations) within a search query? When dealing with single data, I can easily use:
.com/search?id=2&value=test,test2
But what if I have multiple ids with different values like:
{
2: [test,test2],
3: [test3]
}
How would the search query need to be structured in this case?