mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
80161e4208
https://github.com/hasura/graphql-engine-mono/pull/1179 Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com> Co-authored-by: Tirumarai Selvan <8663570+tirumaraiselvan@users.noreply.github.com> GitOrigin-RevId: b565de269e215ae8172bddd895f3d057ddcc8695
18 lines
434 B
Haskell
18 lines
434 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
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
|
|
]
|