Actions
Properties
There are no properties for this class.
Methods
execute
Usage
object execute()
Arguments
None
Return
| Type | Description |
|---|---|
| object |
Examples
Change the type of a Node
In this example, we fire off the changeType action to change the type of a node to custom:thing.
actions.execute("changeType", {
"node": node,
"type": "custom:thing"
});