2021-11-04 19:08:33 +03:00
|
|
|
module Hasura.RQL.IR.Update
|
2021-11-25 00:39:42 +03:00
|
|
|
( AnnotatedUpdate,
|
|
|
|
AnnotatedUpdateG (..),
|
2021-11-04 19:08:33 +03:00
|
|
|
)
|
|
|
|
where
|
2020-10-29 19:58:13 +03:00
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
import Data.Kind (Type)
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.RQL.IR.BoolExp
|
|
|
|
import Hasura.RQL.IR.Returning
|
|
|
|
import Hasura.RQL.Types.Backend
|
|
|
|
import Hasura.RQL.Types.Column
|
|
|
|
import Hasura.SQL.Backend
|
|
|
|
|
2021-11-25 00:39:42 +03:00
|
|
|
data AnnotatedUpdateG (b :: BackendType) (r :: BackendType -> Type) v = AnnotatedUpdateG
|
|
|
|
{ _auTable :: !(TableName b),
|
|
|
|
_auWhere :: !(AnnBoolExp b v, AnnBoolExp b v),
|
|
|
|
_auCheck :: !(AnnBoolExp b v),
|
2021-11-18 21:02:58 +03:00
|
|
|
-- | All the backend-specific data related to an update mutation
|
2021-11-25 00:39:42 +03:00
|
|
|
_auBackend :: BackendUpdate b v,
|
2021-09-24 01:56:37 +03:00
|
|
|
-- we don't prepare the arguments for returning
|
|
|
|
-- however the session variable can still be
|
|
|
|
-- converted as desired
|
2021-11-25 00:39:42 +03:00
|
|
|
_auOutput :: !(MutationOutputG b r v),
|
|
|
|
_auAllCols :: ![ColumnInfo b]
|
2021-09-24 01:56:37 +03:00
|
|
|
}
|
|
|
|
deriving (Functor, Foldable, Traversable)
|
2020-10-29 19:58:13 +03:00
|
|
|
|
2021-11-25 00:39:42 +03:00
|
|
|
type AnnotatedUpdate b = AnnotatedUpdateG b (Const Void) (SQLExpression b)
|