graphql-engine/server/src-lib/Hasura/Backends/MSSQL/Instances/API.hs
Naveen Naidu abb57e58c8 server/MSSQL: Event Delivery System (Incremental PR - 3)
</details>

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3392
Co-authored-by: Divi <32202683+imperfect-fourth@users.noreply.github.com>
GitOrigin-RevId: 9df6b0aa7d91f22571b72d3e467da23b916c9140
2022-04-21 07:20:34 +00:00

22 lines
590 B
Haskell

{-# OPTIONS_GHC -fno-warn-orphans #-}
-- | MSSQL Instances API
--
-- Defines a 'Hasura.Server.API.Backend.BackendAPI' type class instance for MSSQL.
module Hasura.Backends.MSSQL.Instances.API () where
import Hasura.Prelude
import Hasura.SQL.Backend
import Hasura.Server.API.Backend
instance BackendAPI 'MSSQL where
metadataV1CommandParsers =
concat
[ sourceCommands @'MSSQL,
tableCommands @'MSSQL,
tablePermissionsCommands @'MSSQL,
relationshipCommands @'MSSQL,
remoteRelationshipCommands @'MSSQL,
eventTriggerCommands @'MSSQL
]