Module Values_0.JoinSource

Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.

Sourcetype nonrec t = {
  1. name : NodeName.t;
    (*

    The name of the transform node.

    *)
  2. inputs : TwoInputs.t;
    (*

    The data inputs identified by their node names.

    *)
  3. joinType : JoinType.t;
    (*

    Specifies the type of join to be performed on the datasets.

    *)
  4. columns : JoinColumns.t;
    (*

    A list of the two columns to be joined.

    *)
}
Sourceval context_ : string
Sourceval make : name:NodeName.t -> inputs:TwoInputs.t -> joinType:JoinType.t -> columns:JoinColumns.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NodeId.t | `Structure of (string * [> `List of [> `List of [> `String of EnclosedInStringProperty.t ] list ] list | `String of EnclosedInStringProperty.t ]) list ] list | `String of NodeName.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