Skip to main content
Go to Latest
interface RDF.BaseQuery
import { type RDF } from "https://deno.land/x/ldkit@v0.5.0/rdf.ts";
const { BaseQuery } = RDF;

Generic interface that defines query objects following the Future pattern.

Properties

resultType: string

Identifier for the type of result of tis query.

Methods

execute(opts?: any): Promise<ResultStream<any> | boolean | void>

Returns either a stream containing all the items that match the given query, a boolean or void depending on the semantics of the given query.