mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
41054de113
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9499 Co-authored-by: gneeri <10553562+gneeri@users.noreply.github.com> GitOrigin-RevId: 1e351556c43e643aa973f87adc0306f076cd227e
40 lines
1.4 KiB
Haskell
40 lines
1.4 KiB
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
|
|
-- | The representation of native queries as derived from the schema cache.
|
|
module Hasura.NativeQuery.Cache
|
|
( NativeQueryInfo (..),
|
|
NativeQueryCache,
|
|
)
|
|
where
|
|
|
|
import Data.Aeson (ToJSON (toJSON), genericToJSON)
|
|
import Hasura.LogicalModel.Cache (LogicalModelInfo)
|
|
import Hasura.NativeQuery.Metadata (ArgumentName, InterpolatedQuery, NativeQueryName)
|
|
import Hasura.NativeQuery.Types (NullableScalarType)
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.Backend (Backend)
|
|
import Hasura.RQL.Types.BackendType (BackendType)
|
|
import Hasura.RQL.Types.Common (RelName)
|
|
import Hasura.RQL.Types.Relationships.Local (RelInfo)
|
|
import Hasura.Table.Cache (RolePermInfoMap)
|
|
|
|
type NativeQueryCache b = HashMap NativeQueryName (NativeQueryInfo b)
|
|
|
|
-- | The type into which 'NativeQueryMetadata' is resolved in
|
|
-- 'Hasura/RQL/DDL/Schema/Cache.buildSchemaCacheRule'.
|
|
data NativeQueryInfo (b :: BackendType) = NativeQueryInfo
|
|
{ _nqiRootFieldName :: NativeQueryName,
|
|
_nqiCode :: InterpolatedQuery ArgumentName,
|
|
_nqiReturns :: LogicalModelInfo b,
|
|
_nqiArguments :: HashMap ArgumentName (NullableScalarType b),
|
|
_nqiRelationships :: InsOrdHashMap RelName (RelInfo b),
|
|
_nqiDescription :: Maybe Text
|
|
}
|
|
deriving stock (Show, Generic)
|
|
|
|
instance
|
|
(Backend b, ToJSON (RolePermInfoMap b)) =>
|
|
ToJSON (NativeQueryInfo b)
|
|
where
|
|
toJSON = genericToJSON hasuraJSON
|