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

Contains an RDF blank node.

Properties

termType: "BlankNode"

Contains the constant "BlankNode".

value: string

Blank node name as a string, without any serialization specific prefixes, e.g. when parsing, if the data was sourced from Turtle, remove _:, if it was sourced from RDF/XML, do not change the blank node name (example: blank3).

Methods

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