Interface HonuaOdataBatchOptions

interface HonuaOdataBatchOptions {
    atomicity?: "all" | "none";
    signal?: AbortSignal;
}

Properties

Properties

atomicity?: "all" | "none"

"all" wraps the requests in a single atomicityGroup, requesting server-side rollback when any operation fails. "none" (default) runs them as independent change-set operations.

signal?: AbortSignal