Member Junction
    Preparing search index...

    Filter configuration for the Data Explorer Allows constraining which entities are shown in the explorer

    interface DataExplorerFilter {
        applicationId?: string;
        applicationName?: string;
        entityNames?: string[];
        includeSystemEntities?: boolean;
        schemaNames?: string[];
    }
    Index

    Properties

    applicationId?: string

    Application ID to filter entities by. Only entities linked via ApplicationEntities will be shown.

    applicationName?: string

    Application name for display purposes (breadcrumbs, titles)

    entityNames?: string[]

    Explicit entity names to include (e.g., ['Accounts', 'Contacts']) If provided, only these entities will be shown.

    includeSystemEntities?: boolean

    Whether to show system entities (entities starting with __ or system schemas) Default: false

    schemaNames?: string[]

    Schema names to filter by (e.g., ['dbo', 'sales']) Only entities in these schemas will be shown.