Interface IQueryOperationResultBoolean

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

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

Hierarchy (View Summary)

Properties

Properties

context?: IActionContext

The resulting action context.

execute: () => Promise<boolean>

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

type: "boolean"

The type of output.