graphql-engine/server/src-lib/Hasura/Backends/MSSQL/Instances/API.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
508 B
Haskell
Raw Normal View History

{-# 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
]