jig.composite

Configuration options
Core Structure
Other options
Considerations
children:
- jigId: personal-details
instanceId: personalDetails
inputs:
inputName: My details
- jigId: work-details
instanceId: workDetails
- jigId: employee-details
instanceId: hrInfo
actions:
- children:
# you can choose an action to save the data as an object
- type: action.execute-entity
options:
title: Create my details
provider: DATA_PROVIDER_DYNAMIC
entity: default/personal
method: create
data: [email protected]
# or
# you can choose an action to save individual fields
- type: action.execute-entity
options:
title: Create my work details
provider: DATA_PROVIDER_DYNAMIC
entity: default/work
method: create
data:
employee-position: [email protected]
employee-startWork: [email protected]
# or
# you can choose an action to save individual fields from Multiple jigs
- type: action.execute-entity
options:
title: Create Employee details
provider: DATA_PROVIDER_DYNAMIC
entity: default/employees
method: create
data:
id: [email protected]
employee-first-name: [email protected]
employee-surname: [email protected]
employee-position: [email protected]
employee-contract: [email protected] Examples and code snippets
Composite Jig without any form of input

Composite Jig with input


See also
Last updated
Was this helpful?