Type alias CursorExtras

CursorExtras: {
    plan?: Record<string, any>;
    profile?: Record<string, number>;
    stats?: CursorStats;
    warnings: {
        code: number;
        message: string;
    }[];
}

Additional information about the cursor.

Type declaration

  • Optional plan?: Record<string, any>

    Query execution plan for the executed query.

  • Optional profile?: Record<string, number>

    Additional profiling information for the executed query.

  • Optional stats?: CursorStats

    Additional statistics about the query execution.

  • warnings: {
        code: number;
        message: string;
    }[]

    Warnings encountered while executing the query.