2022-08-19 18:40:26 +03:00
|
|
|
{-# 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
|
2023-04-24 21:35:48 +03:00
|
|
|
import Hasura.RQL.Types.BackendType (BackendType (DataConnector))
|
2022-08-19 18:40:26 +03:00
|
|
|
import Hasura.RQL.Types.SchemaCacheTypes (GetAggregationPredicatesDeps)
|
|
|
|
|
|
|
|
instance (Backend 'DataConnector) => GetAggregationPredicatesDeps 'DataConnector
|