A blank node that is scoped to a certain source.

Implements

  • BlankNode

Constructors

Properties

Methods

Constructors

  • Parameters

    • 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).

    • skolemized: NamedNode<string>

    Returns BlankNodeScoped

Properties

skolemized: NamedNode<string>

This value can be obtained by consumers in query results, so that this can be passed into another query as an IRI, in order to obtain more results relating to this (blank) node.

termType: "BlankNode" = '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

  • Parameters

    • other: undefined | null | Term

      The term to compare with.

    Returns boolean

    True if and only if other has termType "BlankNode" and the same value.