mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
ea5c92acae
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8876 GitOrigin-RevId: abfc18eeef96a1f3593bfe823adab4d161161333
13 lines
500 B
Haskell
13 lines
500 B
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
{-# OPTIONS_GHC -Wno-orphans #-}
|
|
|
|
-- This module houses type class instances on the DataConnector backends that relate
|
|
-- to the Schema Cache.
|
|
module Hasura.Backends.DataConnector.Adapter.SchemaCache () where
|
|
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.RQL.Types.BackendType (BackendType (DataConnector))
|
|
import Hasura.RQL.Types.SchemaCacheTypes (GetAggregationPredicatesDeps)
|
|
|
|
instance (Backend 'DataConnector) => GetAggregationPredicatesDeps 'DataConnector
|