mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
80cbf3ae33
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5434 GitOrigin-RevId: 839a45a1469272def9d28c0f3e7454a5bf506f35
32 lines
834 B
Haskell
32 lines
834 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.SQL.Backend
|
|
|
|
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
|