Module Values.EdgeSource

A structure that represents a connection between two nodes in a dependency graph, showing the relationship and characteristics of the connection.

Sourcetype nonrec t = {
  1. sourceNodeId : String_.t option;
    (*

    The identifier of the source node in this edge connection.

    *)
  2. destinationNodeId : String_.t option;
    (*

    The identifier of the destination node in this edge connection.

    *)
  3. duration : Double.t option;
    (*

    The duration or latency associated with this connection, if applicable.

    *)
  4. connectionType : ConnectionType.t option;
    (*

    The type of connection between the nodes, indicating the nature of the relationship.

    *)
}
Sourceval make : ?sourceNodeId:??? -> ?destinationNodeId:??? -> ?duration:??? -> ?connectionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t