| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Hasura.Backends.DataConnector.Adapter.Types.Mutations
Synopsis
Documentation
data BackendInsert v Source #
The Data Connector-specific data of an Insert expression. Currently, we don't have any.
This is parameterised over v which enables different phases of IR
transformation to maintain the overall structure while enriching/transforming
the data at the leaves.
Constructors
| BackendInsert |
Instances
data DataConnectorUpdateVariant v Source #
Constructors
| SingleBatch (UpdateBatch 'DataConnector UpdateOperator v) | |
| MultipleBatches [UpdateBatch 'DataConnector UpdateOperator v] |
Instances
data UpdateOperator v Source #
The operators that are used to mutate specific columns on a table
Constructors
| UpdateSet v | |
| UpdateCustomOperator UpdateColumnOperatorName v |