Interface QueryStartEvent

Event emitted when a query starts execution.

interface QueryStartEvent {
    type: "query:start";
    statement: string;
    parameters?: StorageParameters;
    timestamp: Date;
    queryId?: string;
}

Properties

type
statement: string
parameters?: StorageParameters
timestamp: Date
queryId?: string