Member Junction
    Preparing search index...

    Result type for query execution methods - contains query results and execution metadata

    interface RunQuerySystemUserResult {
        AppliedParameters?: string;
        ErrorMessage: string;
        ExecutionTime: number;
        QueryID: string;
        QueryName: string;
        Results: any;
        RowCount: number;
        Success: boolean;
        TotalRowCount: number;
    }
    Index

    Properties

    AppliedParameters?: string

    JSON string containing the applied parameters (optional)

    ErrorMessage: string

    Error message if the query execution failed

    ExecutionTime: number

    Time taken to execute the query in milliseconds

    QueryID: string

    Unique identifier of the executed query

    QueryName: string

    Display name of the executed query

    Results: any

    Query results data (parsed from JSON)

    RowCount: number

    Number of rows returned by the query

    Success: boolean

    Whether the query execution was successful

    TotalRowCount: number

    Total number of rows available (before pagination)