Comunica Link Traversal
    Preparing search index...
    interface IActorExtractLinksSolidTypeIndexArgs {
        actorInitQuery: ActorInitQueryBase;
        beforeActors?: Actor<
            IActionExtractLinks,
            IActorTest,
            IActorExtractLinksOutput,
            undefined,
        >[];
        bus: Bus<
            Actor<
                IActionExtractLinks,
                IActorTest,
                IActorExtractLinksOutput,
                undefined,
            >,
            IActionExtractLinks,
            IActorTest,
            IActorExtractLinksOutput,
            undefined,
        >;
        busFailMessage?: string;
        inference: boolean;
        mediatorDereferenceRdf: MediatorDereferenceRdf;
        name: string;
        onlyMatchingTypes: boolean;
        typeIndexPredicates: string[];
    }

    Hierarchy

    Index

    Properties

    actorInitQuery: ActorInitQueryBase

    An init query actor that is used to query shapes.

    {<urn:comunica:default:init/actors#query>}
    
    beforeActors?: Actor<
        IActionExtractLinks,
        IActorTest,
        IActorExtractLinksOutput,
        undefined,
    >[]

    Actor that must be registered in the bus before this actor.

    bus: Bus<
        Actor<
            IActionExtractLinks,
            IActorTest,
            IActorExtractLinksOutput,
            undefined,
        >,
        IActionExtractLinks,
        IActorTest,
        IActorExtractLinksOutput,
        undefined,
    >

    The bus this actor subscribes to.

    busFailMessage?: string

    The message that will be configured in the bus for reporting failures.

    This message may be a template string that contains references to the executed action. For example, the following templated string is allowed: "RDF dereferencing failed: no actors could handle ${action.handle.mediaType}"

    inference: boolean

    If the domains of query predicates will be considered when checking the type index. If false, no predicates will be considered.

    {true}
    
    mediatorDereferenceRdf: MediatorDereferenceRdf

    The Dereference RDF mediator

    name: string

    The name for this actor.

    {<rdf:subject>}
    
    onlyMatchingTypes: boolean

    If only those type index entries matching with the current query should be considered. If false, all links within the type index entries will be followed.

    {true}
    
    typeIndexPredicates: string[]

    The type index predicate URLs that will be followed.

    {http://www.w3.org/ns/solid/terms#publicTypeIndex}
    
    {http://www.w3.org/ns/solid/terms#privateTypeIndex}