Values.FlowConnectionSourceContains information about a connection between two nodes in the flow.
type nonrec t = {type_ : FlowConnectionType.t;Whether the source node that the connection begins from is a condition node (Conditional) or not (Data).
*)name : FlowConnectionName.t;A name for the connection that you can reference.
*)source : FlowNodeName.t;The node that the connection starts at.
*)target : FlowNodeName.t;The node that the connection ends at.
*)configuration : FlowConnectionConfiguration.t option;The configuration of the connection.
*)}val make :
?configuration:??? ->
type_:FlowConnectionType.t ->
name:FlowConnectionName.t ->
source:FlowNodeName.t ->
target:FlowNodeName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of FlowConnectionName.t
| `Structure of
(string
* [> `Structure of
(string * [> `String of FlowNodeOutputName.t ]) list ])
list ])
list ]