Interface IQueryOperationResultVoid

Query operation output for boolean results. For example: SPARQL UPDATE results

interface IQueryOperationResultVoid {
    context?: IActionContext;
    execute: (() => Promise<void>);
    type: "void";
}

Hierarchy (view full)

Properties

Properties

context?: IActionContext

The resulting action context.

execute: (() => Promise<void>)

An async function resolving when the update has finished.

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

type: "void"

The type of output.