Path to an object property
select({foo: {bar: {bla: {}}}}, {from: 'foo.bla'})
Object to match or array of objects. The array is interpreted as "or".
select({test: 2}, {where: {test: 2}}) // {test: 2}select({test: 2}, {where: [{test: 1}, {test: 2}]}) // {test: 2}
Path to an object property