Module Values_1.CodeGenEdgeSource

Represents a directional edge in a directed acyclic graph (DAG).

Sourcetype nonrec t = {
  1. source : CodeGenIdentifier.t;
    (*

    The ID of the node at which the edge starts.

    *)
  2. target : CodeGenIdentifier.t;
    (*

    The ID of the node at which the edge ends.

    *)
  3. targetParameter : CodeGenArgName.t option;
    (*

    The target of the edge.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetParameter:??? -> source:CodeGenIdentifier.t -> target:CodeGenIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CodeGenIdentifier.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