Module Values.EdgeStructureSource

Contains information about an edge in a Neptune Analytics graph.

Sourcetype nonrec t = {
  1. count : Long.t option;
    (*

    The number of instances of the edge in the graph.

    *)
  2. edgeProperties : EdgeProperties.t option;
    (*

    A list of the properties associated with the edge.

    *)
}
Sourceval make : ?count:??? -> ?edgeProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Long of Long.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