Interface IQueryOperationResultBoolean

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

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

Hierarchy (view full)

Properties

Properties

context?: IActionContext

The resulting action context.

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

An async function resolving to the boolean output of the operation.

Type declaration

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

type: "boolean"

The type of output.