mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
4f835623b1
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4400 GitOrigin-RevId: 2d90542f95ef4dad70c8dfe1ca3b4c1f3bdaa527
71 lines
2.2 KiB
Haskell
71 lines
2.2 KiB
Haskell
{-# LANGUAGE DeriveAnyClass #-}
|
|
|
|
module Hasura.Backends.DataConnector.IR.OrderBy
|
|
( OrderBy (..),
|
|
OrderType (..),
|
|
)
|
|
where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import Data.Aeson (ToJSON)
|
|
import Data.Aeson qualified as J
|
|
import Hasura.Backends.DataConnector.API qualified as API
|
|
import Hasura.Backends.DataConnector.IR.Column qualified as IR.C
|
|
import Hasura.Incremental (Cacheable)
|
|
import Hasura.Prelude
|
|
import Witch qualified
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | Indicates a particular sort order that should be applied based on some
|
|
-- 'Column.Name' returned within a data source query.
|
|
--
|
|
-- TODO: We should use a sum type like @Query.Field@ here so that we can handle
|
|
-- @order by@ constraints on object/array relationships as well.
|
|
--
|
|
-- cf. https://www.postgresql.org/docs/13/queries-order.html
|
|
--
|
|
-- NOTE: The 'ToJSON' instance is only intended for logging purposes.
|
|
data OrderBy = OrderBy
|
|
{ column :: IR.C.Name,
|
|
ordering :: OrderType
|
|
}
|
|
deriving stock (Data, Eq, Generic, Ord, Show)
|
|
deriving anyclass (Cacheable, Hashable, NFData)
|
|
|
|
instance ToJSON OrderBy where
|
|
toJSON = J.genericToJSON J.defaultOptions
|
|
|
|
instance Witch.From API.OrderBy OrderBy where
|
|
from API.OrderBy {column, ordering} =
|
|
OrderBy (Witch.from column) (Witch.from ordering)
|
|
|
|
instance Witch.From OrderBy API.OrderBy where
|
|
from OrderBy {column, ordering} =
|
|
API.OrderBy (Witch.from column) (Witch.from ordering)
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | 'Column.Name's may be sorted in either ascending or descending order.
|
|
--
|
|
-- cf. https://www.postgresql.org/docs/13/queries-order.html
|
|
--
|
|
-- NOTE: The 'ToJSON' instance is only intended for logging purposes.
|
|
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
|
|
|
|
instance Witch.From API.OrderType OrderType where
|
|
from API.Ascending = Ascending
|
|
from API.Descending = Ascending
|
|
|
|
instance Witch.From OrderType API.OrderType where
|
|
from Ascending = API.Ascending
|
|
from Descending = API.Ascending
|