mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
385d27449e
https://github.com/hasura/graphql-engine-mono/pull/1599 Co-authored-by: Chris Done <11019+chrisdone@users.noreply.github.com> Co-authored-by: Aniket Deshpande <922486+aniketd@users.noreply.github.com> Co-authored-by: Abby Sassel <3883855+sassela@users.noreply.github.com> GitOrigin-RevId: 4df4a8ff00fa8ef311a85199d66abe4cc10adc8c
18 lines
638 B
Haskell
18 lines
638 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
|
|
module Hasura.Backends.MySQL.Instances.Transport where
|
|
|
|
|
|
import Hasura.Backends.MySQL.Instances.Execute ()
|
|
import Hasura.GraphQL.Transport.Backend
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types
|
|
|
|
|
|
instance BackendTransport 'MySQL where
|
|
runDBQuery = error "MySQL backend does not support this operation yet."
|
|
runDBQueryExplain = error "MySQL backend does not support this operation yet."
|
|
runDBMutation = error "MySQL backend does not support this operation yet."
|
|
runDBSubscription = error "MySQL backend does not support this operation yet."
|