interface KeywordExpression {
    expression: string;
    negate?: boolean;
}

Hierarchy (View Summary)

Properties

Properties

expression: string

An expression containing terms to match. Terms can be in any order, and may also be expanded with stemming.

e.g. specifying Star Wars will return items containing either Star or Wars or both.

negate?: boolean

If true, the inverse expression will be created.