mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
ea5c92acae
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8876 GitOrigin-RevId: abfc18eeef96a1f3593bfe823adab4d161161333
24 lines
678 B
Haskell
24 lines
678 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,
|
|
logicalModelsCommands @'MSSQL
|
|
]
|