Constructor
new NewAction()
- Source:
Examples
{
"new": {
"concept": "myConcept",
"with": {
"myFirstProperty": "someValue",
"mySecondProperty": false
"myThirdProperty": "$myVariableName"
}
}
}
//Run in non-bulk mode, creates 1 "myConcept" for each currently selected concept
{
"new": {
"concept": "myConcept",
"forEach": true
}
}
//Same as other example, but don't change the current selection, which means that the newly created concept is only passed along as a variable
{
"new": {
"concept": "myConcept",
"with": {
"myFirstProperty": "someValue",
"mySecondProperty": false
"myThirdProperty": "$myVariableName"
},
"as": "myVariableName",
"select": false
}
}