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

    Properties

    astFactory: AstFactory

    Data-factoryMixins to be used when constructing rdf primitives.

    baseIRI: string | undefined

    Currently scoped base IRI. Only used to validate a base is set when parsing.

    parseMode: Set<string>

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

    prefixes: Record<string, string>

    Current scoped prefixes. Only used to validate parsed prefixes are known.

    skipValidation: boolean

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