Member Junction
    Preparing search index...

    Context for searching records in an external system

    interface SearchContext {
        CompanyIntegration: unknown;
        ContextUser: unknown;
        Filters: Record<string, string>;
        ObjectName: string;
        Page?: number;
        PageSize?: number;
        Sort?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    CompanyIntegration: unknown

    The company integration entity providing connection details

    ContextUser: unknown

    User context for authorization

    Filters: Record<string, string>

    Filter predicates (connector-specific format)

    ObjectName: string

    External object name to operate on

    Page?: number

    Page number (1-based)

    PageSize?: number

    Maximum records per page

    Sort?: string

    Sort expression (connector-specific format)