mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
7474f50ef0
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4414 GitOrigin-RevId: 7899824a49ba9fd479f4cf08789450153f454168
41 lines
1.4 KiB
Haskell
41 lines
1.4 KiB
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
-- | Postgres Instances API
|
|
--
|
|
-- Defines a 'Hasura.Server.API.Backend.BackendAPI' type class instance for Postgres.
|
|
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),
|
|
computedFieldCommands @('Postgres 'Vanilla),
|
|
-- postgres specific
|
|
[ commandParser "set_table_is_enum" RMPgSetTableIsEnum
|
|
]
|
|
]
|
|
|
|
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)
|
|
]
|