mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
abb57e58c8
</details> PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3392 Co-authored-by: Divi <32202683+imperfect-fourth@users.noreply.github.com> GitOrigin-RevId: 9df6b0aa7d91f22571b72d3e467da23b916c9140
22 lines
590 B
Haskell
22 lines
590 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
|
|
]
|