$and
await Member.$search({
$where: {
username: {
$and: [
{ age: { $eq: 16 } },
{ userId: { $startsWith: '123' } }
]
}
}
});Last updated
await Member.$search({
$where: {
username: {
$and: [
{ age: { $eq: 16 } },
{ userId: { $startsWith: '123' } }
]
}
}
});Last updated