Skip to main content
Go to Latest
interface RDF.BaseQuad
Re-export
import { type RDF } from "https://deno.land/x/ldkit@v0.5.0/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