ChemPal Documentation - v1.6.0
    Preparing search index...

    The result of parsing a raw search string.

    interface ParsedSearchQuery {
        raw: string;
        ast: SearchAst;
        isAdvanced: boolean;
    }
    Index

    Properties

    Properties

    raw: string

    The original, untrimmed user input.

    The normalized AST. Always present — a plain query yields a single TermNode.

    isAdvanced: boolean

    True when the query used boolean operators or parentheses.