@faubulous/mentor-rdf-serializers
    Preparing search index...

    Interface Rdf12Quad

    Extended quad type supporting RDF 1.2 features.

    We don't extend Quad directly due to RDF 1.2's expanded subject/object types.

    interface Rdf12Quad {
        annotations?: Rdf12Quad[];
        equals?(other: Quad | null | undefined): boolean;
        graph: NamedNode<string> | BlankNode | DefaultGraph;
        object: TripleTerm | NamedNode<string> | BlankNode | Literal;
        predicate: NamedNode;
        reifier?: NamedNode<string> | BlankNode;
        subject: TripleTerm | NamedNode<string> | BlankNode;
        termType?: "Quad";
    }
    Index

    Properties

    annotations?: Rdf12Quad[]

    Quads that reify this quad (if any). Each reifying quad has this quad as its object and a reifier as its subject.

    graph: NamedNode<string> | BlankNode | DefaultGraph

    The graph of the quad, which can be a named node, blank node, or default graph.

    object: TripleTerm | NamedNode<string> | BlankNode | Literal

    The object of the quad with support for RDF 1.2 triple terms.

    predicate: NamedNode

    The predicate of the quad.

    reifier?: NamedNode<string> | BlankNode

    The reifier for this quad (if reified)

    subject: TripleTerm | NamedNode<string> | BlankNode

    The subject of the quad with support for RDF 1.2 triple terms.

    termType?: "Quad"

    Contains the constant "Quad".

    Methods

    • Parameters

      • other: Quad | null | undefined

      Returns boolean