mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
970d69edd4
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4271 GitOrigin-RevId: 6990010bff622a424ca0bb9d24579bf121819fb0
19 lines
580 B
Haskell
19 lines
580 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.DataWrapper.Adapter.API () where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Hasura.Prelude
|
|
import Hasura.SQL.Backend (BackendType (DataWrapper))
|
|
import Hasura.Server.API.Backend (BackendAPI (..), sourceCommands, tableCommands)
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
instance BackendAPI 'DataWrapper where
|
|
metadataV1CommandParsers =
|
|
concat
|
|
[ sourceCommands @'DataWrapper,
|
|
tableCommands @'DataWrapper
|
|
]
|