mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
ea5c92acae
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8876 GitOrigin-RevId: abfc18eeef96a1f3593bfe823adab4d161161333
21 lines
598 B
Haskell
21 lines
598 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module Hasura.Backends.BigQuery.Instances.API () where
|
|
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.BackendType
|
|
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
|
|
]
|