mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
b167120f96
We'll see if this improves compile times at all, but I think it's worth doing as at least the most minimal form of module documentation. This was accomplished by first compiling everything with -ddump-minimal-imports, and then a bunch of scripting (with help from ormolu) **EDIT** it doesn't seem to improve CI compile times but the noise floor is high as it looks like we're not caching library dependencies anymore PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2730 GitOrigin-RevId: 667eb8de1e0f1af70420cbec90402922b8b84cb4
27 lines
563 B
Haskell
27 lines
563 B
Haskell
module Hasura.SQL.Value
|
|
( TxtEncodedVal (..),
|
|
)
|
|
where
|
|
|
|
import Data.Aeson qualified as A
|
|
import Data.Aeson.Types qualified as AT
|
|
import Data.Text qualified as T
|
|
import Hasura.Prelude
|
|
|
|
data TxtEncodedVal
|
|
= TENull
|
|
| TELit !T.Text
|
|
deriving (Show, Eq, Generic)
|
|
|
|
instance Hashable TxtEncodedVal
|
|
|
|
instance A.ToJSON TxtEncodedVal where
|
|
toJSON = \case
|
|
TENull -> AT.Null
|
|
TELit t -> AT.String t
|
|
|
|
instance A.FromJSON TxtEncodedVal where
|
|
parseJSON A.Null = pure TENull
|
|
parseJSON (A.String t) = pure $ TELit t
|
|
parseJSON v = AT.typeMismatch "String" v
|