2022-03-16 03:39:21 +03:00
|
|
|
{-# LANGUAGE TemplateHaskell #-}
|
2022-05-26 17:05:13 +03:00
|
|
|
{-# LANGUAGE UndecidableInstances #-}
|
2022-03-16 03:39:21 +03:00
|
|
|
|
2021-11-04 19:08:33 +03:00
|
|
|
module Hasura.RQL.IR.Update
|
2021-11-25 00:39:42 +03:00
|
|
|
( AnnotatedUpdate,
|
|
|
|
AnnotatedUpdateG (..),
|
2022-03-10 09:17:48 +03:00
|
|
|
auTable,
|
|
|
|
auWhere,
|
|
|
|
auCheck,
|
|
|
|
auBackend,
|
|
|
|
auOutput,
|
|
|
|
auAllCols,
|
2022-07-19 09:55:42 +03:00
|
|
|
auNamingConvention,
|
2021-11-04 19:08:33 +03:00
|
|
|
)
|
|
|
|
where
|
2020-10-29 19:58:13 +03:00
|
|
|
|
2022-03-10 09:17:48 +03:00
|
|
|
import Control.Lens.TH (makeLenses)
|
server: IR for DB-DB joins
### Description
This PR adds the required IR for DB to DB joins, based on @paf31 and @0x777 's `feature/db-to-db` branch.
To do so, it also refactors the IR to introduce a new type parameter, `r`, which is used to recursively constructs the `v` parameter of remote QueryDBs. When collecting remote joins, we replace `r` with `Const Void`, indicating at the type level that there cannot be any leftover remote join.
Furthermore, this PR refactors IR.Select for readability, moves some code from IR.Root to IR.Select to avoid having to deal with circular dependencies, and makes it compile by adding `error` in all new cases in the execution pipeline.
The diff doesn't make it clear, but most of Select.hs is actually unchanged. Declarations have just been reordered by topic, in the following order:
- type declarations
- instance declarations
- type aliases
- constructor functions
- traverse functions
https://github.com/hasura/graphql-engine-mono/pull/1580
Co-authored-by: Phil Freeman <630306+paf31@users.noreply.github.com>
GitOrigin-RevId: bbdcb4119cec8bb3fc32f1294f91b8dea0728721
2021-06-18 02:12:11 +03:00
|
|
|
import Data.Kind (Type)
|
2022-07-19 09:55:42 +03:00
|
|
|
import Hasura.GraphQL.Schema.NamingCase (NamingCase)
|
2020-10-29 19:58:13 +03:00
|
|
|
import Hasura.Prelude
|
2020-11-02 14:50:40 +03:00
|
|
|
import Hasura.RQL.IR.BoolExp
|
2020-10-29 19:58:13 +03:00
|
|
|
import Hasura.RQL.IR.Returning
|
2021-02-14 09:07:52 +03:00
|
|
|
import Hasura.RQL.Types.Backend
|
2020-10-29 19:58:13 +03:00
|
|
|
import Hasura.RQL.Types.Column
|
|
|
|
import Hasura.SQL.Backend
|
2021-09-24 01:56:37 +03:00
|
|
|
|
2021-12-07 16:12:02 +03:00
|
|
|
data AnnotatedUpdateG (b :: BackendType) (r :: Type) v = AnnotatedUpdateG
|
2022-08-01 12:32:04 +03:00
|
|
|
{ _auTable :: TableName b,
|
2022-07-18 18:15:34 +03:00
|
|
|
-- | The where clause for /update_table/ and /update_table_by_pk/ along with
|
|
|
|
-- the permissions filter.
|
|
|
|
-- In the case of /update_table_many/, this will be empty and the actual
|
|
|
|
-- where clauses (one per update) are found in 'BackendUpdate'.
|
2022-08-01 12:32:04 +03:00
|
|
|
_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,
|
2020-10-29 19:58:13 +03:00
|
|
|
-- we don't prepare the arguments for returning
|
|
|
|
-- however the session variable can still be
|
|
|
|
-- converted as desired
|
2022-05-26 17:05:13 +03:00
|
|
|
|
|
|
|
-- | Selection set
|
2022-08-01 12:32:04 +03:00
|
|
|
_auOutput :: MutationOutputG b r v,
|
|
|
|
_auAllCols :: [ColumnInfo b],
|
|
|
|
_auNamingConvention :: Maybe NamingCase
|
2021-07-08 18:41:59 +03:00
|
|
|
}
|
2022-05-26 17:05:13 +03:00
|
|
|
deriving stock (Functor, Foldable, Traversable)
|
|
|
|
|
|
|
|
deriving stock instance
|
|
|
|
( Backend b,
|
2022-08-11 19:31:34 +03:00
|
|
|
Eq (AnnBoolExp b v),
|
|
|
|
Eq (MutationOutputG b r v),
|
2022-05-26 17:05:13 +03:00
|
|
|
Eq (BackendUpdate b v),
|
|
|
|
Eq r,
|
|
|
|
Eq v
|
|
|
|
) =>
|
|
|
|
Eq (AnnotatedUpdateG b r v)
|
|
|
|
|
|
|
|
deriving stock instance
|
|
|
|
( Backend b,
|
2022-08-11 19:31:34 +03:00
|
|
|
Show (AnnBoolExp b v),
|
|
|
|
Show (MutationOutputG b r v),
|
2022-05-26 17:05:13 +03:00
|
|
|
Show (BackendUpdate b v),
|
|
|
|
Show r,
|
|
|
|
Show v
|
|
|
|
) =>
|
|
|
|
Show (AnnotatedUpdateG b r v)
|
2020-10-29 19:58:13 +03:00
|
|
|
|
2021-12-07 16:12:02 +03:00
|
|
|
type AnnotatedUpdate b = AnnotatedUpdateG b Void (SQLExpression b)
|
2022-03-10 09:17:48 +03:00
|
|
|
|
|
|
|
$(makeLenses ''AnnotatedUpdateG)
|