mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
11a454c2d6
This commit applies ormolu to the whole Haskell code base by running `make format`. For in-flight branches, simply merging changes from `main` will result in merge conflicts. To avoid this, update your branch using the following instructions. Replace `<format-commit>` by the hash of *this* commit. $ git checkout my-feature-branch $ git merge <format-commit>^ # and resolve conflicts normally $ make format $ git commit -a -m "reformat with ormolu" $ git merge -s ours post-ormolu https://github.com/hasura/graphql-engine-mono/pull/2404 GitOrigin-RevId: 75049f5c12f430c615eafb4c6b8e83e371e01c8e
39 lines
1.4 KiB
Haskell
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)
|
|
]
|