Module Values_1.ColumnToUnpivotSource

Specifies a column to be unpivoted, transforming it from a column into rows with associated values.

Sourcetype nonrec t = {
  1. columnName : Values_0.ColumnName.t option;
    (*

    The name of the column to unpivot from the source data.

    *)
  2. newValue : CellValue.t option;
    (*

    The value to assign to this column in the unpivoted result, typically the column name or a descriptive label.

    *)
}
Sourceval make : ?columnName:??? -> ?newValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ColumnName.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