mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
79682e0598
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
21 lines
592 B
Haskell
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
|
|
]
|