data-cap
    Preparing search index...

    Interface FieldInfo

    Current authoritative execution metadata for one field -- never an event history. source is the operation key that most recently established the field's current value; error clears on the next successful establishing operation unless a still-newer operation has since set a different one.

    interface FieldInfo {
        error?: DataError;
        fetchedAt?: number;
        optimistic?: boolean;
        source?: string;
        stale?: boolean;
        status?: DataStatus;
        subscription?: SubscriptionInfo;
        updatedAt?: number;
    }
    Index
    error?: DataError

    The error the establishing operation settled with, if it failed.

    fetchedAt?: number

    When source most recently committed a value via a getter/subscription, as epoch ms.

    optimistic?: boolean

    True while an uncommitted pending optimistic transition is contributing to this field's visible value.

    source?: string

    The operation key that most recently established this field's current value.

    stale?: boolean

    True once a newer request for this field has superseded the value currently shown.

    status?: DataStatus

    This field's current lifecycle status.

    subscription?: SubscriptionInfo

    Connection/lifecycle metadata, populated only when this field is established by a subscription.

    updatedAt?: number

    When source most recently committed a value via any operation, as epoch ms.