Interface IQueryOperationResultVoid

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

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

Hierarchy (View Summary)

Properties

Properties

context?: IActionContext

The resulting action context.

execute: () => Promise<void>

An async function resolving when the update has finished.

type: "void"

The type of output.