We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc2e12 commit 33c543fCopy full SHA for 33c543f
README.md
@@ -98,6 +98,15 @@ Fuzzy matching is used for typo tolerance. There are four options:
98
client.setFuzzyMatch(false);
99
```
100
101
+#### Postfix wildcard
102
+Enable or disable postfix wildcard. I.e. should keyword "add" match to "addsearch" or should it just match to the
103
+term **add**
104
+
105
+```js
106
+// Possible values true/false (default: true)
107
+client.setPostfixWildcard(false);
108
+```
109
110
### Pagination
111
Set page number, page size and sorting parameters. It's possible to order results by:
112
- relevance (descending)
0 commit comments