TaskBundleApplyResult
The result of applying a bundle to a target — the list of newly spawned task instances.
type TaskBundleApplyResult {
bundle: TaskBundle!
spawnedCount: Int!
spawned: [Task!]!
}
Fields
TaskBundleApplyResult.bundle ● TaskBundle! non-null object
The bundle that was applied.
TaskBundleApplyResult.spawnedCount ● Int! non-null scalar
The number of tasks spawned.
TaskBundleApplyResult.spawned ● [Task!]! non-null object
The tasks that were spawned. Already attached to the target.
Returned By
applyTaskBundle mutation