mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
94331e23f5
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3924 GitOrigin-RevId: 75b276edcd2d1f88bbdbed1b96b08708f9c68450
55 lines
1.4 KiB
Haskell
55 lines
1.4 KiB
Haskell
{-# LANGUAGE DeriveAnyClass #-}
|
|
|
|
--
|
|
module Hasura.Backends.DataWrapper.API.V0.OrderBy
|
|
( OrderBy (..),
|
|
OrderType (..),
|
|
)
|
|
where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Data.Aeson (FromJSON, ToJSON)
|
|
import Data.Aeson qualified as J
|
|
import Data.Aeson.Casing (snakeCase)
|
|
import Hasura.Backends.DataWrapper.API.V0.Column qualified as API.V0
|
|
import Hasura.Incremental (Cacheable)
|
|
import Hasura.Prelude
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
data OrderBy = OrderBy
|
|
{ column :: API.V0.ColumnName,
|
|
ordering :: OrderType
|
|
}
|
|
deriving stock (Data, Eq, Generic, Ord, Show)
|
|
deriving anyclass (Cacheable, Hashable, NFData)
|
|
|
|
instance ToJSON OrderBy where
|
|
toJSON = J.genericToJSON J.defaultOptions
|
|
|
|
instance FromJSON OrderBy where
|
|
parseJSON = J.genericParseJSON J.defaultOptions
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
data OrderType
|
|
= Ascending
|
|
| Descending
|
|
deriving stock (Data, Eq, Generic, Ord, Show)
|
|
deriving anyclass (Cacheable, Hashable, NFData)
|
|
|
|
instance ToJSON OrderType where
|
|
toJSON =
|
|
J.genericToJSON $
|
|
J.defaultOptions
|
|
{ J.constructorTagModifier = snakeCase
|
|
}
|
|
|
|
instance FromJSON OrderType where
|
|
parseJSON =
|
|
J.genericParseJSON $
|
|
J.defaultOptions
|
|
{ J.constructorTagModifier = snakeCase
|
|
}
|