Autocomplete
The method expects an object with the following mandatory properties: * the name of the table to search * the query string to autocomplete For details, see the documentation on [**Autocomplete**](Autocomplete.md) An example: ``` { "table":"table_name", "query":"query_beginning" } ``` An example of the method's response: ``` [ { "total": 3, "error": "", "warning": "", "columns": [ { "query": { "type": "string" } } ], "data": [ { "query": "hello" }, { "query": "helio" }, { "query": "hell" } ] } ] ``` For more detailed information about the autocomplete queries, please refer to the documentation [here](https://manual.manticoresearch.com/Searching/Autocomplete).
Autocomplete is an example object payload from Manticore Search, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.