mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
dc73b7b7d5
No logic in this PR, just tidying things up (renaming the backend from `Experimental` to `DataWrapper`). PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3779 GitOrigin-RevId: f11acf563ccd8b9f16bc23c5e92da392aa4cfb2c
14 lines
437 B
Haskell
14 lines
437 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.DataWrapper.Adapter.API () where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Hasura.SQL.Backend (BackendType (DataWrapper))
|
|
import Hasura.Server.API.Backend (BackendAPI (..))
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
instance BackendAPI 'DataWrapper where
|
|
metadataV1CommandParsers = []
|