Traqula
    Preparing search index...
    interface SparqlContext {
        baseIRI: undefined | string;
        dataFactory: DataFactory<BaseQuadTerm>;
        parseMode: Set<string>;
        prefixes: Record<string, string>;
        skipValidation: boolean;
    }
    Index

    Properties

    baseIRI: undefined | string

    The base IRI for the query. Used for resolving relative IRIs.

    dataFactory: DataFactory<BaseQuadTerm>

    Data-factory to be used when constructing rdf primitives.

    parseMode: Set<string>

    Set of queryModes. Primarily used for note 8, 14.

    prefixes: Record<string, string>

    Current scoped prefixes. Used for resolving prefixed names.

    skipValidation: boolean

    Can be used to disable the validation that used variables in a select clause are in scope.