kysely
    Preparing search index...

    Interface PluginTransformResultArgs

    interface PluginTransformResultArgs {
        queryId: QueryId;
        result: QueryResult<UnknownRow>;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    queryId: QueryId
    signal?: AbortSignal

    An optional signal that can be used to abort the execution of (async) operations.

    This is useful for cancelling long-running queries, for example when the user navigates away from the page or closes the browser tab.

    See inflightQueryAbortStrategy for handling of database side query.