mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
463a303390
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3293 GitOrigin-RevId: 3062d5b1f41ce1fb18afc78773a2c947d8765309
20 lines
508 B
Haskell
20 lines
508 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
|
|
]
|