2018-06-27 16:11:32 +03:00
|
|
|
module Hasura.GraphQL.Utils
|
2019-02-22 15:25:36 +03:00
|
|
|
( showName
|
2018-06-27 16:11:32 +03:00
|
|
|
, showNamedTy
|
|
|
|
, throwVE
|
|
|
|
, getBaseTy
|
|
|
|
, groupTuples
|
|
|
|
, groupListWith
|
|
|
|
, mkMapWith
|
|
|
|
, showNames
|
2019-12-14 09:47:38 +03:00
|
|
|
, simpleGraphQLQuery
|
2018-06-27 16:11:32 +03:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Hasura.Prelude
|
2018-11-23 16:02:46 +03:00
|
|
|
import Hasura.RQL.Types.Error
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
import qualified Data.HashMap.Strict as Map
|
|
|
|
import qualified Data.List.NonEmpty as NE
|
|
|
|
import qualified Data.Text as T
|
|
|
|
import qualified Language.GraphQL.Draft.Syntax as G
|
|
|
|
|
|
|
|
showName :: G.Name -> Text
|
|
|
|
showName name = "\"" <> G.unName name <> "\""
|
|
|
|
|
|
|
|
throwVE :: (MonadError QErr m) => Text -> m a
|
|
|
|
throwVE = throw400 ValidationFailed
|
|
|
|
|
|
|
|
showNamedTy :: G.NamedType -> Text
|
|
|
|
showNamedTy nt =
|
|
|
|
"'" <> G.showNT nt <> "'"
|
|
|
|
|
|
|
|
getBaseTy :: G.GType -> G.NamedType
|
|
|
|
getBaseTy = \case
|
2018-11-23 16:02:46 +03:00
|
|
|
G.TypeNamed _ n -> n
|
|
|
|
G.TypeList _ lt -> getBaseTyL lt
|
2018-06-27 16:11:32 +03:00
|
|
|
where
|
|
|
|
getBaseTyL = getBaseTy . G.unListType
|
|
|
|
|
|
|
|
groupListWith
|
|
|
|
:: (Eq k, Hashable k, Foldable t, Functor t)
|
|
|
|
=> (v -> k) -> t v -> Map.HashMap k (NE.NonEmpty v)
|
|
|
|
groupListWith f l =
|
|
|
|
groupTuples $ fmap (\v -> (f v, v)) l
|
|
|
|
|
|
|
|
groupTuples
|
|
|
|
:: (Eq k, Hashable k, Foldable t)
|
|
|
|
=> t (k, v) -> Map.HashMap k (NE.NonEmpty v)
|
|
|
|
groupTuples =
|
|
|
|
foldr groupFlds Map.empty
|
|
|
|
where
|
|
|
|
groupFlds (k, v) m = case Map.lookup k m of
|
|
|
|
Nothing -> Map.insert k (v NE.:| []) m
|
|
|
|
Just s -> Map.insert k (v NE.<| s) m
|
|
|
|
|
|
|
|
-- either duplicate keys or the map
|
|
|
|
mkMapWith
|
|
|
|
:: (Eq k, Hashable k, Foldable t, Functor t)
|
|
|
|
=> (v -> k) -> t v -> Either (NE.NonEmpty k) (Map.HashMap k v)
|
|
|
|
mkMapWith f l =
|
|
|
|
case NE.nonEmpty dups of
|
|
|
|
Just dupsNE -> Left dupsNE
|
|
|
|
Nothing -> Right $ Map.map NE.head mapG
|
|
|
|
where
|
|
|
|
mapG = groupListWith f l
|
|
|
|
dups = Map.keys $ Map.filter ((> 1) . length) mapG
|
|
|
|
|
|
|
|
showNames :: (Foldable t) => t G.Name -> Text
|
|
|
|
showNames names =
|
|
|
|
T.intercalate ", " $ map G.unName $ toList names
|
2019-12-14 09:47:38 +03:00
|
|
|
|
|
|
|
-- A simple graphql query to be used in generators
|
|
|
|
simpleGraphQLQuery :: Text
|
|
|
|
simpleGraphQLQuery = "query {author {id name}}"
|