Module Values.NodeStructureSource

A node structure.

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

    Number of nodes that have this specific structure.

    *)
  2. nodeProperties : NodeProperties.t option;
    (*

    A list of the node properties present in this specific structure.

    *)
  3. distinctOutgoingEdgeLabels : OutgoingEdgeLabels.t option;
    (*

    A list of distinct outgoing edge labels present in this specific structure.

    *)
}
Sourceval make : ?count:??? -> ?nodeProperties:??? -> ?distinctOutgoingEdgeLabels:??? -> 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