Setup

Resources

For information and setup help, see the following documentation:

Configuring the Teleport connector

In DaVinci, add a Teleport connector. For more information, see Adding a connector.

Note:

This connector doesn't have a configuration at the environment level. You configure it in your flow instead.

Using the connector in a flow

Manage large flows

Use teleport nodes to connect different sections of the flow. This makes the flow more readable by breaking it down into discrete sections. It also lets you reuse some sections of the flow rather than duplicating content.

Manage looping flows

When flows loop, the canvas can become cluttered. Avoid this by defining a start node at the point where the loop returns, then using the teleport connector to go to that start node to execute the loop.

No special flow configuration is needed. Add the capability and populate its properties according to the help text.

Capabilities

Define a Start Node

Define the node where the flow will start.

Details
Details
Properties
inputSchema codeEditor

Follow example for JSON schema.

Default:

{
	"type": "object",
	"properties": {
		"success": {
			"type": "boolean",
			"displayName": "success",
			"preferredControlType": "textField",
			"enableParameters": true,
			"propertyName": "success"
		}
	}
}
Go to Start Node

Go to a specific start node defined in the flow.

Details
Details
Properties
nodeInstanceId dropDown

Teleport to this node. Give your nodes a name in case you see duplicate names in the list

Return to Calling Node

Return to the node where the flow starts.

Details
Details
Properties
outputSchema codeEditor

Follow example for JSON schema.

Default:

{
	"type": "object",
	"properties": {
		"success": {
			"type": "boolean",
			"displayName": "success",
			"preferredControlType": "textField",
			"enableParameters": true,
			"propertyName": "success"
		}
	}
}