Member Junction
    Preparing search index...

    Input for SearchKnowledge on the system-user client. Mirrors SearchClientParams from graphQLSearchClient but is used exclusively through the system-user transport.

    interface SearchKnowledgeSystemUserInput {
        Filters?: {
            EntityNames?: string[];
            SourceTypes?: string[];
            Tags?: string[];
        };
        MaxResults?: number;
        MinScore?: number;
        Query: string;
    }
    Index

    Properties

    Filters?: { EntityNames?: string[]; SourceTypes?: string[]; Tags?: string[] }

    Optional filters to narrow search results

    Type Declaration

    • OptionalEntityNames?: string[]

      Filter to specific entity names

    • OptionalSourceTypes?: string[]

      Filter to specific source types (e.g., 'Vector', 'FullText', 'Entity', 'Storage')

    • OptionalTags?: string[]

      Filter to results matching specific tags

    MaxResults?: number

    Maximum number of results to return

    MinScore?: number

    Minimum relevance score threshold (0-1)

    Query: string

    The search query text