mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
23e1cb218a
This PR simplifies the types that represent a remote relationship in IR so that they can be reused in other parts (in remote schema types) which could have remote relationships. The comments on the PR explain the main changes. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2979 GitOrigin-RevId: 559c51d9d6ae79e2183ce4347018741b9096ac74
15 lines
362 B
Haskell
15 lines
362 B
Haskell
module Hasura.RQL.IR
|
|
( module IR,
|
|
)
|
|
where
|
|
|
|
import Hasura.RQL.IR.BoolExp as IR
|
|
import Hasura.RQL.IR.Delete as IR
|
|
import Hasura.RQL.IR.Insert as IR
|
|
import Hasura.RQL.IR.OrderBy as IR
|
|
import Hasura.RQL.IR.RemoteSchema as IR
|
|
import Hasura.RQL.IR.Returning as IR
|
|
import Hasura.RQL.IR.Root as IR
|
|
import Hasura.RQL.IR.Select as IR
|
|
import Hasura.RQL.IR.Update as IR
|