graphql-engine/server/src-lib/Hasura/Backends/MySQL/Instances/API.hs
Sibi Prabakaran 385d27449e mysql: Metadata awareness
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
2021-07-15 12:45:51 +00:00

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
]