Explore module - autocomplete


Enable autocomplete

Since 1.13.1

You can turn on autocomplete for all explore units:

client.ui.explores.autocomplete.enable();

When enabled, the search box in each explore unit will display query suggestions as the user types, powered by the query suggestion API.

Alternatively, you can enable autocomplete for a specific explore unit:

const workflow1 = client.ui.explore; // the unit with unit-id = "default"
workflow1.autocomplete.enable();

const workflow2 = client.ui.explores.get(unitId);
workflow2.autocomplete.enable();