interface IQueryProcessSequential {
    evaluate: ((operation, context) => Promise<IQueryOperationResult>);
    optimize: ((operation, context) => Promise<IQueryProcessSequentialOutput>);
    parse: ((query, context) => Promise<IQueryProcessSequentialOutput>);
}

Implemented by

    Properties

    evaluate: ((operation, context) => Promise<IQueryOperationResult>)

    Type declaration

    optimize: ((operation, context) => Promise<IQueryProcessSequentialOutput>)

    Type declaration

    parse: ((query, context) => Promise<IQueryProcessSequentialOutput>)

    Type declaration