Member Junction
    Preparing search index...

    A non-fatal diagnostic a connector attaches to a fetch result so the engine surfaces it in the structured run artifact instead of letting it be a swallowed console.warn. The canonical use is a second-layer/association object that fetched ZERO records because its parents weren't available (not synced, unmapped, or DAG-ordered wrong) — the classic silent-empty.

    interface FetchWarning {
        Code: string;
        Data?: Record<string, unknown>;
        Message: string;
    }
    Index

    Properties

    Properties

    Code: string

    Stable machine code, e.g. 'ZERO_PARENTS'.

    Data?: Record<string, unknown>

    Optional structured context (parent object name, counts, etc.).

    Message: string

    Human-readable explanation.