mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
983fc2ad47
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8800 GitOrigin-RevId: e5e10f31c6cc8953a8ee947441a7f80b0e9b5e5e
24 lines
668 B
Haskell
24 lines
668 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,
|
|
nativeQueriesCommands @'MSSQL,
|
|
logicalModelsCommands @'MSSQL
|
|
]
|