The state of the CategoryFieldSuggestions controller.

interface CategoryFieldSuggestionsState {
    isLoading: boolean;
    moreValuesAvailable: boolean;
    query: string;
    values: CategoryFieldSuggestionsValue[];
}

Properties

isLoading: boolean

Whether the request for field suggestions is in progress.

moreValuesAvailable: boolean

Whether more field suggestions are available.

query: string

The query used to request field suggestions.

The field suggestions.