{-# LANGUAGE UndecidableInstances #-}
module Hasura.Backends.Postgres.Types.Aggregates
( CountAggregate (..),
)
where
import Hasura.Backends.Postgres.SQL.DML qualified as S
import Hasura.Backends.Postgres.SQL.Types
import Hasura.Prelude
import Hasura.RQL.IR.BoolExp
import Hasura.RQL.Types.Backend
import Hasura.RQL.Types.BackendType
newtype CountAggregate pgKind v = CountAggregate {forall (pgKind :: PostgresKind) v.
CountAggregate pgKind v
-> CountType (PGCol, AnnRedactionExp ('Postgres pgKind) v)
getCountType :: S.CountType (PGCol, AnnRedactionExp ('Postgres pgKind) v)}
deriving stock ((forall x.
CountAggregate pgKind v -> Rep (CountAggregate pgKind v) x)
-> (forall x.
Rep (CountAggregate pgKind v) x -> CountAggregate pgKind v)
-> Generic (CountAggregate pgKind v)
forall x.
Rep (CountAggregate pgKind v) x -> CountAggregate pgKind v
forall x.
CountAggregate pgKind v -> Rep (CountAggregate pgKind v) x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
forall (pgKind :: PostgresKind) v x.
Rep (CountAggregate pgKind v) x -> CountAggregate pgKind v
forall (pgKind :: PostgresKind) v x.
CountAggregate pgKind v -> Rep (CountAggregate pgKind v) x
$cfrom :: forall (pgKind :: PostgresKind) v x.
CountAggregate pgKind v -> Rep (CountAggregate pgKind v) x
from :: forall x.
CountAggregate pgKind v -> Rep (CountAggregate pgKind v) x
$cto :: forall (pgKind :: PostgresKind) v x.
Rep (CountAggregate pgKind v) x -> CountAggregate pgKind v
to :: forall x.
Rep (CountAggregate pgKind v) x -> CountAggregate pgKind v
Generic)
deriving stock instance (Backend ('Postgres pgKind)) => Functor (CountAggregate pgKind)
deriving stock instance (Backend ('Postgres pgKind)) => Foldable (CountAggregate pgKind)
deriving stock instance (Backend ('Postgres pgKind)) => Traversable (CountAggregate pgKind)
deriving stock instance
(Backend ('Postgres pgKind), Show (AnnRedactionExp ('Postgres pgKind) v), Show v) =>
Show (CountAggregate pgKind v)
deriving stock instance
(Backend ('Postgres pgKind), Eq (AnnRedactionExp ('Postgres pgKind) v), Eq v) =>
Eq (CountAggregate pgKind v)