graphql-engine/server/src-lib/Hasura/Backends/MSSQL/Instances/API.hs
Daniel Harvey 79682e0598 chore(server): move custom types out of logical models
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8565
Co-authored-by: Tom Harding <6302310+i-am-tom@users.noreply.github.com>
GitOrigin-RevId: 38bf56cc420a6c818a9ca7d6f846f5018535c808
2023-03-31 15:35:13 +00:00

24 lines
672 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,
logicalModelsCommands @'MSSQL,
customReturnTypesCommands @'MSSQL
]