Member Junction
    Preparing search index...

    Input type for GetQueryDataByNameSystemUser method calls - executes a stored query by name

    interface GetQueryDataByNameSystemUserInput {
        CategoryID?: string;
        CategoryPath?: string;
        Enrichment?: RunQueryEnrichment;
        MaxRows?: number;
        Parameters?: Record<string, any>;
        QueryName: string;
        StartRow?: number;
    }
    Index

    Properties

    CategoryID?: string

    Optional category ID filter

    CategoryPath?: string

    Optional category path filter (hierarchical path like "/MJ/AI/Agents/" or simple name)

    Enrichment?: RunQueryEnrichment

    Optional runtime-only directive to post-process result rows through a registered query result enricher

    MaxRows?: number

    Optional maximum number of rows to return

    Parameters?: Record<string, any>

    Optional parameters for templated queries

    QueryName: string

    The name of the query to execute

    StartRow?: number

    Optional starting row number for pagination