Member Junction
    Preparing search index...

    Represents a set (list or view) in the Venn diagram

    interface VennSet {
        color: string;
        kind: OperandKind;
        listId: string;
        listName: string;
        operandKey: string;
        recordIds: Set<string>;
        size: number;
    }
    Index

    Properties

    color: string

    Discriminator — drives the dashed-vs-solid stroke in the Venn diagram.

    listId: string

    Underlying list / view ID. Same UUID space as the entity it points at.

    listName: string
    operandKey: string

    Stable cache key. Use OperandCacheKey() to construct.

    recordIds: Set<string>
    size: number