Member Junction
    Preparing search index...

    Interface ClassifyAnalyticsScope

    Scope filter applied to every analytics aggregation. 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).

    interface ClassifyAnalyticsScope {
        ContentSourceIDs?: string[];
        ContentTypeIDs?: string[];
        EndDate?: Date;
        StartDate?: Date;
    }
    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).