2021-07-07 04:43:42 +03:00
|
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
|
2021-11-04 19:08:33 +03:00
|
|
|
module Hasura.Backends.BigQuery.Instances.API () where
|
2021-07-07 04:43:42 +03:00
|
|
|
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.SQL.Backend
|
|
|
|
import Hasura.Server.API.Backend
|
|
|
|
|
|
|
|
instance BackendAPI 'BigQuery where
|
|
|
|
metadataV1CommandParsers =
|
|
|
|
concat
|
|
|
|
[ sourceCommands @'BigQuery,
|
|
|
|
tableCommands @'BigQuery,
|
|
|
|
tablePermissionsCommands @'BigQuery,
|
2021-11-24 19:21:59 +03:00
|
|
|
relationshipCommands @'BigQuery,
|
2022-05-04 17:52:29 +03:00
|
|
|
remoteRelationshipCommands @'BigQuery,
|
|
|
|
computedFieldCommands @'BigQuery
|
2021-07-07 04:43:42 +03:00
|
|
|
]
|