Type Alias PartialNluInfo

Contains break down of the asked question in the form of tokens with their classification.

type PartialNluInfo = {
    fieldName?: string;
    fieldValue?: string;
    role?: "dimension" | "measure" | "date";
    text?: string;
    type?:
        | "field"
        | "filter"
        | "master_dimension"
        | "master_measure"
        | "custom_analysis";
}
Index

Properties

fieldName?: string

Qlik sense application field selected for given token or phrase

fieldValue?: string

Filter value found from query

role?: "dimension" | "measure" | "date"

Role of the token or phrase from query

text?: string

Matching token or phrase from query

type?:
    | "field"
    | "filter"
    | "master_dimension"
    | "master_measure"
    | "custom_analysis"

Type of token from query