Member Junction
    Preparing search index...

    The result of moving a batch between lists.

    possiblyStuckCount is Apollo's silent-fail rate showing up (quirk #2), not a bug in the caller. Those records are not retried here: they resurface on the next page-1 drain carrying both labels and get stripped then.

    interface ApolloMoveResult {
        failedCount: number;
        items: ApolloMoveItemResult[];
        movedCount: number;
        possiblyStuckCount: number;
    }
    Index

    Properties

    failedCount: number

    Records where a PATCH outright failed.

    Per-record detail, for auditing and for planning the next drain pass.

    movedCount: number

    Destination added AND source removed, and not flagged stuck.

    possiblyStuckCount: number

    Records whose remove reported success but did not apply (quirk #2).