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

Hierarchy (View Summary)

Properties

Properties

expression: string

An expression that must appear in its entirety at least once for an item to be returned.

e.g. specifying Star Wars will only return items containing the exact phrase.

negate?: boolean

If true, the inverse expression will be created.