Values.EdgeSourceA structure that represents a connection between two nodes in a dependency graph, showing the relationship and characteristics of the connection.
type nonrec t = {sourceNodeId : String_.t option;The identifier of the source node in this edge connection.
*)destinationNodeId : String_.t option;The identifier of the destination node in this edge connection.
*)duration : Double.t option;The duration or latency associated with this connection, if applicable.
*)connectionType : ConnectionType.t option;The type of connection between the nodes, indicating the nature of the relationship.
*)}