mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
983fc2ad47
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8800 GitOrigin-RevId: e5e10f31c6cc8953a8ee947441a7f80b0e9b5e5e
21 lines
588 B
Haskell
21 lines
588 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,
|
|
nativeQueriesCommands @'BigQuery,
|
|
logicalModelsCommands @'BigQuery
|
|
]
|