batching
Splits one logical operation into several service calls, or bundles several into one.
| Name | Category | Description |
|---|---|---|
chunkFind | utils | Use This function is useful for processing large datasets in batches without loading everything into memory at once. It uses pagination to fetch results in chunks, yielding each page's data array. |
createMany | utils | Creates all given items with a single If the service does not allow multi creating (its |
iterateFind | utils | Use This function is useful for iterating over large datasets without loading everything into memory at once. It uses pagination to fetch results in chunks, allowing you to process each item as it is retrieved. |
patchBatch | utils | Batch patching utility that takes an array of items to be changed and returns an array of arguments to be called with the This utility is useful when you need to patch multiple items with varying data in as few requests as possible. |
patchMany | utils | Patches all items matching If the service does not allow multi patching (its The |
removeMany | utils | Removes all items matching If the service does not allow multi removing (its The |
See all tags for the full vocabulary.
