Member Junction
    Preparing search index...

    Scope filter applied when building a tag cloud. All fields are optional; an empty / undefined scope means "all classify data the context user can see".

    Source / content-type filters constrain the underlying MJ: Content Items (those columns live on the item, not the tag). The date range constrains the MJ: Content Item Tags.__mj_CreatedAt (when the tag was applied). The tag-root filter constrains which tags are eligible by their resolved tag IDs.

    Mirrors ClassifyAnalyticsScope's style so the two engines share the same scoping vocabulary on the Knowledge Hub "Visualize" surface.

    interface TagCloudScope {
        ContentSourceIDs?: string[];
        ContentTypeIDs?: string[];
        EndDate?: Date;
        StartDate?: Date;
        TagRootIDs?: string[];
    }
    Index

    Properties

    ContentSourceIDs?: string[]

    Restrict to items from these content sources (OR-ed).

    ContentTypeIDs?: string[]

    Restrict to items of these content types (OR-ed).

    EndDate?: Date

    Only count tags created at/before this date (inclusive).

    StartDate?: Date

    Only count tags created at/after this date (inclusive).

    TagRootIDs?: string[]

    Restrict the cloud to tags that are (transitively) under one of these tag roots. Resolved against MJ: Tags (ID or ParentID chain). When omitted, all tags in scope are eligible.