Definition
autocompleteThe
autocompleteoperator performs a search for a word or phrase that contains a sequence of characters from an incomplete input string. The fields that you intend to query with theautocompleteoperator must be indexed with the autocomplete data type in the collection's index definition. To learn how to configure your index for autocompletion, see How to Index Fields for Autocompletion.
Note
MongoDB Search might return inaccurate results for queries with more than three words in a single string.
Sample Use Cases
You can use the autocomplete operator with search-as-you-type applications to predict words with increasing accuracy as characters are entered in your application's search field. autocomplete returns results that contain predicted words based on the tokenization strategy specified in the index definition for autocompletion.
If you want to build suggestions or dropdowns using the MongoDB Search autocomplete operator, we recommend that you query a collection of suggested search terms or use past search terms to populate the dropdown. If you create a separate collection of suggested search terms, you can define synonym mappings in your MongoDB Search index to search your collection for the exact or alternative words.
Syntax
autocomplete has the following syntax:
1 { 2 $search: { 3 "index": "<index name>", // optional, defaults to "default" 4 "autocomplete": { 5 "query": "<search-string>", 6 "path": "<field-to-search>", 7 "tokenOrder": "any|sequential", 8 "fuzzy": <options>, 9 "score": <options> 10 } 11 } 12 }
Options
Field | Type | Description | Necessity | Default | ||||
|---|---|---|---|---|---|---|---|---|
| string or array of strings | String or strings to search for. If there are multiple terms in a string, MongoDB Search also looks for a match for each term in the string separately. | yes | |||||
| string | Indexed field to search. This field must be indexed as the The For an example of an | yes | |||||
| object | Enable fuzzy search. Find strings which are similar to the search term or terms. | no | |||||
| integer | Maximum number of single-character edits required to match the specified search term. Value can be | no |
| ||||
| integer | Number of characters at the beginning of each term in the result that must exactly match. | no |
| ||||
| integer | Maximum number of variations to generate and search for. This limit applies on a per-token basis. | no |
| ||||
| object | Score to assign to the matching search term results. Use one of the following options to modify the default score:
For information on using | no | |||||
| string | Order in which to search for tokens. Value can be one of the following:
| no |
|
Scoring Behavior
By default, the text operator uses the bm25 similarity algorithm to score documents depending on their relevance to the query.
You can change which similarity algorithm is used by specifying a different similarity algorithm in the similarity.type property for the autocomplete fields in your MongoDB Search index definition. To learn how to configure a MongoDB Search index for the autocomplete type, see How to Index String Fields.
To learn more about the supported similarity algorithms, see Score Details.
The autocomplete operator query results that are exact matches receive a lower score than results that aren't exact matches. MongoDB Search can't determine if a query string is an exact match for an indexed text if you specify just the autocomplete-indexed token substrings. To score exact matches higher, try the following workaround:
Note
The following workaround doesn't guarantee higher scores for exact matches in all cases.
Index the field as both autocomplete and string types.
MongoDB Search
autocompleteboosts exact matches when anautocompletefield is also indexed as astring, thereby increasing the score of exact matches.Query using the compound operator.
For a demonstration of this workaround, see Search Across Multiple Fields.
Examples
The following examples use the movies collection in the sample_mflix database. If you loaded the sample dataset on your cluster, you can create the static index for autocompletion and run the example queries on your cluster.
Index Definition
The following tabs contain sample index definitions for the edgeGram, rightEdgeGram, and nGram tokenization strategies. In addition to the autocomplete type, the sample index definitions include the string and token types on the title field.
1 { 2 "mappings": { 3 "dynamic": false, 4 "fields": { 5 "title": [ 6 { 7 "type": "token" 8 }, 9 { 10 "type": "string" 11 }, 12 { 13 "foldDiacritics": false, 14 "maxGrams": 7, 15 "minGrams": 3, 16 "tokenization": "edgeGram", 17 "type": "autocomplete" 18 } 19 ], 20 "plot": [ 21 { 22 "type": "autocomplete", 23 "tokenization": "edgeGram", 24 "minGrams": 2, 25 "maxGrams": 15, 26 "foldDiacritics": true 27 } 28 ] 29 } 30 } 31 }
1 { 2 "mappings": { 3 "dynamic": false, 4 "fields": { 5 "title": [ 6 { 7 "type": "token" 8 }, 9 { 10 "type": "string" 11 }, 12 { 13 "foldDiacritics": false, 14 "maxGrams": 7, 15 "minGrams": 3, 16 "tokenization": "rightEdgeGram", 17 "type": "autocomplete" 18 } 19 ], 20 "plot": [ 21 { 22 "type": "autocomplete", 23 "tokenization": "rightEdgeGram", 24 "minGrams": 2, 25 "maxGrams": 15, 26 "foldDiacritics": true 27 } 28 ] 29 } 30 } 31 }
1 { 2 "mappings": { 3 "dynamic": false, 4 "fields": { 5 "title": [ 6 { 7 "type": "token" 8 }, 9 { 10 "type": "string" 11 }, 12 { 13 "foldDiacritics": false, 14 "maxGrams": 7, 15 "minGrams": 3, 16 "tokenization": "nGram", 17 "type": "autocomplete" 18 } 19 ], 20 "plot": [ 21 { 22 "type": "autocomplete", 23 "tokenization": "nGram", 24 "minGrams": 2, 25 "maxGrams": 15, 26 "foldDiacritics": true 27 } 28 ] 29 } 30 } 31 }
➤ Use the Select your language drop-down menu to set the language of the example on this page.
Basic Example
The following query searches for movies with the characters off in the title field.
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Fuzzy Example
Basic Example
The following query searches for movies with the characters pre in the title field. The query uses:
Field | Description |
| Indicates that only one character variation is allowed in the query string |
| Indicates that the first character in the query string |
| Indicates that up to two hundred and fifty six similar terms for |
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Partial Match Example
The following queries demonstrate how to search the specified fields for a word or phrase that contains the sequence of characters that you specify with your query.
Token Order Example
The following queries search for movies with the characters men with in the title field. The queries also use the tokenOrder field, which specifies whether the query searches for tokens in any order or in sequential order.
Starts With Example
You can search the title field for movie titles that start with a term or phrase by indexing the field using the keyword analyzer.
You must index the field using the keyword analyzer with the edgeGram tokenization strategy to retrieve results for the following sample query. If you index the field using any other built-in analyzers, MongoDB Search doesn't return any results because it doesn't index your text field as a single term. The edgeGram tokenization strategy creates tokens starting at the left side of the words.
You must also set foldDiacritics to true to return case-agnostic results. If you set foldDiacritics to false, the letter case of the query term must exactly match the letter case in the document for MongoDB Search to return any results.
{ "mappings": { "dynamic": false, "fields": { "title": [ { "type": "token" }, { "type": "string" }, { "foldDiacritics": true, "maxGrams": 7, "minGrams": 3, "analyzer": "lucene.keyword", "tokenization": "edgeGram", "type": "autocomplete" }] } } }
The following query searches for movie titles that start with the term Fast &.
Simple any Example
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Simple sequential Example
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Highlighting Example
The following query searches for the characters ger in the title field of the movies collection, with the highlight option enabled for the title field.
Important
To highlight the autocomplete indexed version of a path, the autocomplete operator must be the only operator that uses that path in the query.
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Search Across Multiple Fields
The following query searches the title and plot fields of the movies collection for words that begin with the character string inter using the compound operator.
Note
Your Results May Vary
MongoDB Search returns different results depending on the tokenization strategy configured in the index definition for the autocomplete type. To learn more, see How to Index Fields for Autocompletion.
Bucket Results through Facet Queries
Learn More
To learn more, see How to Run Autocomplete and Partial Match MongoDB Search Queries.