2020-10-29 19:58:13 +03:00
|
|
|
module Hasura.RQL.IR.Update where
|
|
|
|
|
|
|
|
import Hasura.Prelude
|
|
|
|
|
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)
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
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
|
|
|
data AnnUpdG (b :: BackendType) (r :: BackendType -> Type) v
|
2020-10-29 19:58:13 +03:00
|
|
|
= AnnUpd
|
2020-11-12 12:25:48 +03:00
|
|
|
{ uqp1Table :: !(TableName b)
|
2020-10-29 19:58:13 +03:00
|
|
|
, uqp1OpExps :: ![(Column b, UpdOpExpG v)]
|
|
|
|
, uqp1Where :: !(AnnBoolExp b v, AnnBoolExp b v)
|
|
|
|
, uqp1Check :: !(AnnBoolExp b v)
|
|
|
|
-- we don't prepare the arguments for returning
|
|
|
|
-- however the session variable can still be
|
|
|
|
-- converted as desired
|
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
|
|
|
, uqp1Output :: !(MutationOutputG b r v)
|
2020-10-29 19:58:13 +03:00
|
|
|
, uqp1AllCols :: ![ColumnInfo b]
|
2021-07-08 18:41:59 +03:00
|
|
|
} deriving (Functor, Foldable, Traversable)
|
2020-10-29 19:58:13 +03:00
|
|
|
|
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
|
|
|
type AnnUpd b = AnnUpdG b (Const Void) (SQLExpression b)
|
2020-10-29 19:58:13 +03:00
|
|
|
|
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
|
|
|
data UpdOpExpG v
|
|
|
|
= UpdSet !v
|
|
|
|
| UpdInc !v
|
|
|
|
| UpdAppend !v
|
|
|
|
| UpdPrepend !v
|
|
|
|
| UpdDeleteKey !v
|
|
|
|
| UpdDeleteElem !v
|
|
|
|
| UpdDeleteAtPath ![v]
|
|
|
|
deriving (Functor, Foldable, Traversable, Generic, Data)
|
2020-10-29 19:58:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
-- NOTE: This function can be improved, because we use
|
|
|
|
-- the literal values defined below in the 'updateOperators'
|
|
|
|
-- function in 'Hasura.GraphQL.Schema.Mutation'. It would
|
|
|
|
-- be nice if we could avoid duplicating the string literal
|
|
|
|
-- values
|
|
|
|
updateOperatorText :: UpdOpExpG a -> Text
|
|
|
|
updateOperatorText (UpdSet _) = "_set"
|
|
|
|
updateOperatorText (UpdInc _) = "_inc"
|
|
|
|
updateOperatorText (UpdAppend _) = "_append"
|
|
|
|
updateOperatorText (UpdPrepend _) = "_prepend"
|
|
|
|
updateOperatorText (UpdDeleteKey _) = "_delete_key"
|
|
|
|
updateOperatorText (UpdDeleteElem _) = "_delete_elem"
|
|
|
|
updateOperatorText (UpdDeleteAtPath _) = "_delete_at_path"
|