Skip to content

Commit 1d4544d

Browse files
committed
md
1 parent 97cb9b3 commit 1d4544d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ multi-lingual and language-specific, complex phrase, (proximity... TBD) and toke
1313
search terms.
1414

1515
For example, passing a search phrase like: `+mandatory -exclude ?"optional
16-
phrase"` to `buildAQL`'s query object as the `term` key, will produce the
17-
following query:
16+
phrase"` to `buildAQL`'s query object as the `term` key, will produce a query
17+
like the following:
1818

1919
```aql
20+
FOR doc IN search_view
2021
SEARCH
2122
MIN_MATCH(
2223
ANALYZER(
@@ -38,6 +39,9 @@ following query:
3839
3940
OPTIONS @value6
4041
SORT TFIDF(doc) DESC
42+
43+
LIMIT @value7, @value8
44+
RETURN doc
4145
```
4246
This query will retrieve all documents that __include__ the term "mandatory"
4347
AND __do not include__ the term "exclude", AND whose ranking will be boosted by the

0 commit comments

Comments
 (0)