graphql-engine/server/src-lib/Hasura/Backends/BigQuery/Instances/API.hs
Daniel Harvey 79682e0598 chore(server): move custom types out of logical models
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8565
Co-authored-by: Tom Harding <6302310+i-am-tom@users.noreply.github.com>
GitOrigin-RevId: 38bf56cc420a6c818a9ca7d6f846f5018535c808
2023-03-31 15:35:13 +00:00

21 lines
592 B
Haskell

{-# OPTIONS_GHC -fno-warn-orphans #-}
module Hasura.Backends.BigQuery.Instances.API () where
import Hasura.Prelude
import Hasura.SQL.Backend
import Hasura.Server.API.Backend
instance BackendAPI 'BigQuery where
metadataV1CommandParsers =
concat
[ sourceCommands @'BigQuery,
tableCommands @'BigQuery,
tablePermissionsCommands @'BigQuery,
relationshipCommands @'BigQuery,
remoteRelationshipCommands @'BigQuery,
computedFieldCommands @'BigQuery,
logicalModelsCommands @'BigQuery,
customReturnTypesCommands @'BigQuery
]