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

    Interface DefinitionQueryOptions

    Parameters for querying resources in the store that have an explicitly asserted type in the document.

    interface DefinitionQueryOptions {
        definedBy?: string | null;
        includeBlankNodes?: boolean;
        includeInferred?: boolean;
        includeReferenced?: boolean;
        notDefinedBy?: Set<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    definedBy?: string | null

    URI of the vocabulary that defines the resources. If null, returns only resources that have no rdfs:isDefinedBy property.

    includeBlankNodes?: boolean

    Indicate if blank nodes should be included in the result (default: false).

    includeInferred?: boolean

    Indicates if inferred triples should be included in the result. If undefined, the default value is true when a reasoner associated with the store and false otherwise.

    includeReferenced?: boolean

    Indicate if terms what are not defined in the ontology should be included in the result (default: false).

    notDefinedBy?: Set<string>

    URIs of the vocabularies in which the resources must not be defined, either by sharing a namespace or by rdfs:isDefinedBy.