graphql-engine/server/src-lib/Hasura/Backends/Postgres/Instances/API.hs
Brandon Simmons b167120f96 server: add explicit export lists in OSS server and enforce with warning
We'll see if this improves compile times at all, but I think it's worth
doing as at least the most minimal form of module documentation.

This was accomplished by first compiling everything with
-ddump-minimal-imports, and then a bunch of scripting (with help from
ormolu)

**EDIT** it doesn't seem to improve CI compile times but the noise floor is high as it looks like we're not caching library dependencies anymore

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2730
GitOrigin-RevId: 667eb8de1e0f1af70420cbec90402922b8b84cb4
2021-11-04 16:09:38 +00:00

39 lines
1.4 KiB
Haskell

{-# OPTIONS_GHC -fno-warn-orphans #-}
module Hasura.Backends.Postgres.Instances.API () where
import Hasura.Prelude
import Hasura.SQL.Backend
import Hasura.Server.API.Backend
import {-# SOURCE #-} Hasura.Server.API.Metadata
instance BackendAPI ('Postgres 'Vanilla) where
metadataV1CommandParsers =
concat
[ sourceCommands @('Postgres 'Vanilla),
tableCommands @('Postgres 'Vanilla),
tablePermissionsCommands @('Postgres 'Vanilla),
functionCommands @('Postgres 'Vanilla),
functionPermissionsCommands @('Postgres 'Vanilla),
relationshipCommands @('Postgres 'Vanilla),
remoteRelationshipCommands @('Postgres 'Vanilla),
eventTriggerCommands @('Postgres 'Vanilla),
-- postgres specific
[ commandParser "set_table_is_enum" RMPgSetTableIsEnum,
commandParser "add_computed_field" RMAddComputedField,
commandParser "drop_computed_field" RMDropComputedField
]
]
instance BackendAPI ('Postgres 'Citus) where
metadataV1CommandParsers =
concat
[ sourceCommands @('Postgres 'Citus),
tableCommands @('Postgres 'Citus),
tablePermissionsCommands @('Postgres 'Citus),
functionCommands @('Postgres 'Citus),
functionPermissionsCommands @('Postgres 'Citus),
relationshipCommands @('Postgres 'Citus),
remoteRelationshipCommands @('Postgres 'Citus)
]