graphql-engine/server/src-lib/Hasura/Backends/MySQL/Instances/API.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
407 B
Haskell
Raw Normal View History

{-# 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
]