@metreeca/trio - v0.1.1
    Preparing search index...

    Type Alias Blank

    An RDF blank node.

    Carries the bare label identifying the node within a single document, for example 0 for the _:0 rendering: the _: prefix belongs to the N-Triples/SPARQL syntax and is supplied by the serialisers rather than stored. Blank-node identity is document-scoped: a label carries no meaning across queries or stores. Mint one with blank.

    type Blank = {
        kind: "blank";
        label: string;
    }
    Index
    kind: "blank"
    label: string