Type Alias QueryCreate

type QueryCreate = {
    app?: QlikApp;
    clearEntityContext?: boolean;
    disableConversationContext?: boolean;
    disableFollowups?: boolean;
    disableNarrative?: boolean;
    enableVisualizations?: boolean;
    lang?: string;
    recommendationId?: string;
    text: string;
    visualizationTypes?: string[];
}
Index

Properties

app?: QlikApp
clearEntityContext?: boolean

Flag that clears the entity context.

disableConversationContext?: boolean

Flag that specifies either to enable converastion context.

disableFollowups?: boolean

The flag specifies whether to disable follow-up recommendations.

disableNarrative?: boolean

Flag that specifies whether the narratives should be generated for the user query or not.

enableVisualizations?: boolean

Flag that specifies whether visualization object should be provided or not.

lang?: string

The language to assume when parsing, specified as an ISO-639-1 code. Defaults to 'en' (English).

recommendationId?: string

property that contains the Id of the recommendation for which the response should be generated.

text: string

The sentence that will be parsed.

visualizationTypes?: string[]

Specify visualizationTypes for only which visualization object should be provided if enableVisualizations is set to true. For eg. ['linechart', 'barchart']