interface ExecutionReport {
    children: ExecutionStep[];
    duration: number;
}

Properties

Properties

children: ExecutionStep[]

The steps involved in processing the query.

duration: number

The total time, in milliseconds, needed to process the query.