mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
7474f50ef0
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4414 GitOrigin-RevId: 7899824a49ba9fd479f4cf08789450153f454168
19 lines
504 B
Haskell
19 lines
504 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
|
|
]
|