Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] removed note about order for term and trigram since it has been fixed #7037

Merged
merged 1 commit into from
Dec 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions wiki/content/query-language/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,19 +382,6 @@ transaction conflict rate. Use only the minimum number of and simplest indexes
that your application needs.
{{% /notice %}}

Please note that when specifying at the same time both `term` and `trigram` indexes, in the schema, you will need to specify them in the following exact order: `<predicate>: string @index(term, trigram) .` not vice-versa.
Doing otherwise causes queries using the index to return an error about invalid tokenizers.

```
{
"message": ": Attribute streamTitle does not have a valid tokenizer.",
"extensions": {
"code": "ErrorInvalidRequest"
}
}
```


### DateTime Indices

The indices available for `dateTime` are as follows.
Expand Down