Member Junction
    Preparing search index...

    A label. Apollo overloads "label" to mean account lists, contact lists, and freeform tags; modality discriminates, and is surfaced here as kind.

    interface ApolloLabel {
        cachedCount: number;
        createdAt: string;
        id: string;
        kind: string;
        name: string;
        updatedAt: string;
    }
    Index

    Properties

    cachedCount: number

    The member count Apollo caches per label. It can lag the true count, so it is fine for display and wrong for paging math.

    createdAt: string
    id: string
    kind: string

    'accounts' | 'contacts'; any other value Apollo sends passes through verbatim.

    name: string
    updatedAt: string