Support array-like ($in, $all, etc) queries in Data API
Similar to the find() method, the Data API could support multiple (array-like) structures while querying, ex:
{
dataSource: 'cluster',
database: 'database',
collection: 'collection',
filter: { property: { $oid: { $in: [ObjectIDs] } } }
}
directly analogous to: data.getCollection('collection').find({ property: { $in: [ObjectIDs] } })
3
votes
Sambhav Jain
shared this idea