Module Values_1.UnpivotOperationSource

A transform operation that converts columns into rows, normalizing the data structure.

Sourcetype nonrec t = {
  1. alias : Values_0.TransformOperationAlias.t;
    (*

    Alias for this operation.

    *)
  2. source : Values_0.TransformOperationSource.t;
    (*

    The source transform operation that provides input data for unpivoting.

    *)
  3. columnsToUnpivot : ColumnToUnpivotList.t;
    (*

    The list of columns to unpivot from the source data.

    *)
  4. unpivotedLabelColumnName : Values_0.ColumnName.t;
    (*

    The name for the new column that will contain the unpivoted column names.

    *)
  5. unpivotedLabelColumnId : Values_0.ColumnId.t;
    (*

    A unique identifier for the new column that will contain the unpivoted column names.

    *)
  6. unpivotedValueColumnName : Values_0.ColumnName.t;
    (*

    The name for the new column that will contain the unpivoted values.

    *)
  7. unpivotedValueColumnId : Values_0.ColumnId.t;
    (*

    A unique identifier for the new column that will contain the unpivoted values.

    *)
}
Sourceval context_ : string
Sourceval make : alias:Values_0.TransformOperationAlias.t -> source:Values_0.TransformOperationSource.t -> columnsToUnpivot:ColumnToUnpivotList.t -> unpivotedLabelColumnName:Values_0.ColumnName.t -> unpivotedLabelColumnId:Values_0.ColumnId.t -> unpivotedValueColumnName:Values_0.ColumnName.t -> unpivotedValueColumnId:Values_0.ColumnId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Values_0.ColumnName.t ]) list ] list | `String of Values_0.TransformOperationAlias.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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