Skip to main content
Module

x/ldkit/rdf.ts>RDF.BaseQuad

LDkit - Linked Data query toolkit for TypeScript developers
Go to Latest
interface RDF.BaseQuad
Re-export
import { type RDF } from "https://deno.land/x/ldkit@v0.5.1/rdf.ts";
const { BaseQuad } = RDF;

An RDF quad, taking any Term in its positions, containing the subject, predicate, object and graph terms.

Properties

termType: "Quad"

Contains the constant "Quad".

value: ""

Contains an empty string as constant value.

subject: Term

The subject.

predicate: Term

The predicate.

object: Term

The object.

graph: Term

The named graph.

Methods

equals(other: Term | null | undefined): boolean