Module Values.MatchClauseSource

A clause to match a query pattern

Sourcetype nonrec t = {
  1. relationPattern : RelationPattern.t option;
    (*

    The pattern describing the query's relational traversal.

    *)
  2. entityPattern : EntityPattern.t option;
    (*

    The pattern describing the entities for the query to traverse.

    *)
}
Sourceval make : ?relationPattern:??? -> ?entityPattern:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) 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