mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
0346224444
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8769 GitOrigin-RevId: 66f2cbfb620d641e672a4074554d9d324a18c591
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,
|
|
nativeQueriesCommands @'BigQuery,
|
|
customReturnTypesCommands @'BigQuery
|
|
]
|