Collection.and()
Syntax
collection.and(filter)Parameters
Return Value
Remarks
Sample
const collection = db.friends
.where('age').above(25)
.and(friend => /foo/i.test(friend.name));
const result = await collection.offset(50).limit(25).toArray();