Skip to main content
Module

x/ldkit/rdf.ts>RDF.BaseQuery

LDkit - Linked Data query toolkit for TypeScript developers
Go to Latest
interface RDF.BaseQuery
import { type RDF } from "https://deno.land/x/ldkit@v0.5.1/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.