mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
930df62de7
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8975 GitOrigin-RevId: c71a9f74bf01bb8c0bc8c8cd4b744b530d99476a
25 lines
720 B
Haskell
25 lines
720 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.RQL.Types.BackendType
|
|
import Hasura.Server.API.Backend
|
|
|
|
instance BackendAPI 'MSSQL where
|
|
metadataV1CommandParsers =
|
|
concat
|
|
[ sourceCommands @'MSSQL,
|
|
tableCommands @'MSSQL,
|
|
tablePermissionsCommands @'MSSQL,
|
|
relationshipCommands @'MSSQL,
|
|
remoteRelationshipCommands @'MSSQL,
|
|
eventTriggerCommands @'MSSQL,
|
|
nativeQueriesCommands @'MSSQL,
|
|
storedProceduresCommands @'MSSQL,
|
|
logicalModelsCommands @'MSSQL
|
|
]
|