mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
e0c0043e76
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9284 GitOrigin-RevId: 2f2cf2ad01900a54e4bdb970205ac0ef313c7e00
32 lines
846 B
Haskell
32 lines
846 B
Haskell
-- | Postgres Translate Delete
|
|
--
|
|
-- Tranlates an IR delete term to a Postgres SQL DELETE statement.
|
|
--
|
|
-- See 'Hasura.Backends.Postgres.Execute.Mutation.execDeleteQuery'.
|
|
module Hasura.Backends.Postgres.Translate.Delete
|
|
( mkDelete,
|
|
)
|
|
where
|
|
|
|
import Hasura.Backends.Postgres.SQL.DML qualified as S
|
|
import Hasura.Backends.Postgres.Translate.BoolExp
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.IR.BoolExp
|
|
import Hasura.RQL.IR.Delete
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.RQL.Types.BackendType
|
|
|
|
mkDelete ::
|
|
(Backend ('Postgres pgKind)) =>
|
|
AnnDel ('Postgres pgKind) ->
|
|
S.SQLDelete
|
|
mkDelete (AnnDel tn (fltr, wc) _ _ _) =
|
|
S.SQLDelete tn Nothing tableFltr $ Just S.returningStar
|
|
where
|
|
tableFltr =
|
|
Just
|
|
. S.WhereFrag
|
|
. S.simplifyBoolExp
|
|
. toSQLBoolExp (S.QualTable tn)
|
|
$ andAnnBoolExps fltr wc
|