mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
18 lines
434 B
Haskell
18 lines
434 B
Haskell
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
||
|
|
||
|
module Hasura.Backends.MySQL.Instances.API where
|
||
|
|
||
|
import Hasura.Prelude
|
||
|
|
||
|
import Hasura.SQL.Backend
|
||
|
import Hasura.Server.API.Backend
|
||
|
|
||
|
|
||
|
instance BackendAPI 'MySQL where
|
||
|
metadataV1CommandParsers = concat
|
||
|
[ sourceCommands @'MySQL
|
||
|
, tableCommands @'MySQL
|
||
|
, tablePermissionsCommands @'MySQL
|
||
|
, relationshipCommands @'MySQL
|
||
|
]
|