graphql-engine/server/src-lib/Hasura/GraphQL/Execute/LiveQuery/Options.hs

38 lines
1.2 KiB
Haskell

module Hasura.GraphQL.Execute.LiveQuery.Options
( LiveQueriesOptions(..)
, BatchSize(..)
, RefetchInterval(..)
, mkLiveQueriesOptions
) where
import Hasura.Prelude
import qualified Data.Aeson as J
import Data.Time.Clock (DiffTime)
import Data.Time.Clock.Units (seconds)
data LiveQueriesOptions
= LiveQueriesOptions
{ _lqoBatchSize :: !BatchSize
, _lqoRefetchInterval :: !RefetchInterval
} deriving (Show, Eq)
mkLiveQueriesOptions :: Maybe BatchSize -> Maybe RefetchInterval -> LiveQueriesOptions
mkLiveQueriesOptions batchSize refetchInterval = LiveQueriesOptions
{ _lqoBatchSize = fromMaybe (BatchSize 100) batchSize
, _lqoRefetchInterval = fromMaybe (RefetchInterval $ seconds 1) refetchInterval
}
instance J.ToJSON LiveQueriesOptions where
toJSON (LiveQueriesOptions batchSize refetchInterval) =
J.object [ "batch_size" J..= batchSize
, "refetch_delay" J..= refetchInterval
]
newtype BatchSize = BatchSize { unBatchSize :: Int }
deriving (Show, Eq, J.ToJSON)
newtype RefetchInterval = RefetchInterval { unRefetchInterval :: DiffTime }
deriving (Show, Eq, J.ToJSON)