mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
ea5c92acae
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8876 GitOrigin-RevId: abfc18eeef96a1f3593bfe823adab4d161161333
17 lines
407 B
Haskell
17 lines
407 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.MySQL.Instances.API () where
|
|
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.BackendType
|
|
import Hasura.Server.API.Backend
|
|
|
|
instance BackendAPI 'MySQL where
|
|
metadataV1CommandParsers =
|
|
concat
|
|
[ sourceCommands @'MySQL,
|
|
tableCommands @'MySQL,
|
|
tablePermissionsCommands @'MySQL,
|
|
relationshipCommands @'MySQL
|
|
]
|