Updated examples

This commit is contained in:
delvedor
2020-09-07 10:00:28 +02:00
parent 96110ea948
commit 471d0a5563
4 changed files with 7 additions and 7 deletions

View File

@ -90,8 +90,8 @@ import { Q, F } from '../'
// outside of your hot code path.
const query = F()
.match('description', Q.param('description'))
.filter(f => f
.term('author.name', Q.param('author'))
.filter(
F().term('author.name', Q.param('author'))
)
.size(10)