2016-02-12 13:27:46 +01:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
2020-05-27 23:18:35 +02:00
|
|
|
{-# LANGUAGE ScopedTypeVariables #-}
|
2019-07-14 05:58:05 +02:00
|
|
|
module Test.StarWars.Schema
|
2020-05-27 23:18:35 +02:00
|
|
|
( schema
|
2019-07-14 05:58:05 +02:00
|
|
|
) where
|
2016-02-12 13:27:46 +01:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
import Control.Monad.Catch (MonadThrow(..), SomeException)
|
2020-05-27 23:18:35 +02:00
|
|
|
import Control.Monad.Trans.Reader (asks)
|
2020-05-23 06:46:21 +02:00
|
|
|
import qualified Data.HashMap.Strict as HashMap
|
2019-09-01 02:53:15 +02:00
|
|
|
import Data.Maybe (catMaybes)
|
2020-05-27 23:18:35 +02:00
|
|
|
import Data.Text (Text)
|
2020-06-19 10:53:41 +02:00
|
|
|
import Language.GraphQL.Type
|
2020-06-06 21:22:11 +02:00
|
|
|
import qualified Language.GraphQL.Type.In as In
|
2020-05-24 13:51:00 +02:00
|
|
|
import qualified Language.GraphQL.Type.Out as Out
|
2016-02-12 13:27:46 +01:00
|
|
|
import Test.StarWars.Data
|
2020-05-27 23:18:35 +02:00
|
|
|
import Prelude hiding (id)
|
2016-02-12 13:27:46 +01:00
|
|
|
|
|
|
|
-- See https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsSchema.js
|
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
schema :: Schema (Either SomeException)
|
2020-07-15 19:15:31 +02:00
|
|
|
schema = Schema
|
|
|
|
{ query = queryType
|
|
|
|
, mutation = Nothing
|
|
|
|
, subscription = Nothing
|
|
|
|
}
|
2020-05-14 09:17:14 +02:00
|
|
|
where
|
2020-05-26 11:13:55 +02:00
|
|
|
queryType = Out.ObjectType "Query" Nothing [] $ HashMap.fromList
|
2020-07-14 19:37:56 +02:00
|
|
|
[ ("hero", heroFieldResolver)
|
|
|
|
, ("human", humanFieldResolver)
|
|
|
|
, ("droid", droidFieldResolver)
|
2020-05-23 06:46:21 +02:00
|
|
|
]
|
2020-07-14 19:37:56 +02:00
|
|
|
heroField = Out.Field Nothing (Out.NamedObjectType heroObject)
|
|
|
|
$ HashMap.singleton "episode"
|
2020-06-06 21:22:11 +02:00
|
|
|
$ In.Argument Nothing (In.NamedEnumType episodeEnum) Nothing
|
2020-07-14 19:37:56 +02:00
|
|
|
heroFieldResolver = ValueResolver heroField hero
|
|
|
|
humanField = Out.Field Nothing (Out.NamedObjectType heroObject)
|
|
|
|
$ HashMap.singleton "id"
|
2020-06-06 21:22:11 +02:00
|
|
|
$ In.Argument Nothing (In.NonNullScalarType string) Nothing
|
2020-07-14 19:37:56 +02:00
|
|
|
humanFieldResolver = ValueResolver humanField human
|
|
|
|
droidField = Out.Field Nothing (Out.NamedObjectType droidObject) mempty
|
|
|
|
droidFieldResolver = ValueResolver droidField droid
|
2016-02-19 19:21:32 +01:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
heroObject :: Out.ObjectType (Either SomeException)
|
2020-05-27 23:18:35 +02:00
|
|
|
heroObject = Out.ObjectType "Human" Nothing [] $ HashMap.fromList
|
2020-06-29 13:14:23 +02:00
|
|
|
[ ("id", idFieldType)
|
|
|
|
, ("name", nameFieldType)
|
|
|
|
, ("friends", friendsFieldType)
|
|
|
|
, ("appearsIn", appearsInField)
|
|
|
|
, ("homePlanet", homePlanetFieldType)
|
|
|
|
, ("secretBackstory", secretBackstoryFieldType)
|
|
|
|
, ("__typename", typenameFieldType)
|
2020-05-27 23:18:35 +02:00
|
|
|
]
|
2020-06-03 07:20:38 +02:00
|
|
|
where
|
2020-07-14 19:37:56 +02:00
|
|
|
homePlanetFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing (Out.NamedScalarType string) mempty)
|
|
|
|
$ idField "homePlanet"
|
2020-05-27 23:18:35 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
droidObject :: Out.ObjectType (Either SomeException)
|
2020-05-27 23:18:35 +02:00
|
|
|
droidObject = Out.ObjectType "Droid" Nothing [] $ HashMap.fromList
|
2020-06-29 13:14:23 +02:00
|
|
|
[ ("id", idFieldType)
|
|
|
|
, ("name", nameFieldType)
|
|
|
|
, ("friends", friendsFieldType)
|
|
|
|
, ("appearsIn", appearsInField)
|
|
|
|
, ("primaryFunction", primaryFunctionFieldType)
|
|
|
|
, ("secretBackstory", secretBackstoryFieldType)
|
|
|
|
, ("__typename", typenameFieldType)
|
2020-05-27 23:18:35 +02:00
|
|
|
]
|
2020-06-03 07:20:38 +02:00
|
|
|
where
|
2020-07-14 19:37:56 +02:00
|
|
|
primaryFunctionFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing (Out.NamedScalarType string) mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "primaryFunction"
|
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
typenameFieldType :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
typenameFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing (Out.NamedScalarType string) mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "__typename"
|
2020-06-03 07:20:38 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
idFieldType :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
idFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing (Out.NamedScalarType id) mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "id"
|
2020-06-03 07:20:38 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
nameFieldType :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
nameFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing (Out.NamedScalarType string) mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "name"
|
2020-06-03 07:20:38 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
friendsFieldType :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
friendsFieldType
|
|
|
|
= ValueResolver (Out.Field Nothing fieldType mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "friends"
|
2020-07-14 19:37:56 +02:00
|
|
|
where
|
|
|
|
fieldType = Out.ListType $ Out.NamedObjectType droidObject
|
2020-06-03 07:20:38 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
appearsInField :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
appearsInField
|
|
|
|
= ValueResolver (Out.Field (Just description) fieldType mempty)
|
2020-06-29 13:14:23 +02:00
|
|
|
$ idField "appearsIn"
|
2020-06-13 07:20:19 +02:00
|
|
|
where
|
|
|
|
fieldType = Out.ListType $ Out.NamedEnumType episodeEnum
|
|
|
|
description = "Which movies they appear in."
|
2020-06-03 07:20:38 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
secretBackstoryFieldType :: Resolver (Either SomeException)
|
2020-07-14 19:37:56 +02:00
|
|
|
secretBackstoryFieldType = ValueResolver field secretBackstory
|
|
|
|
where
|
|
|
|
field = Out.Field Nothing (Out.NamedScalarType string) mempty
|
2020-05-27 23:18:35 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
idField :: Text -> Resolve (Either SomeException)
|
2020-05-27 23:18:35 +02:00
|
|
|
idField f = do
|
2020-07-17 07:05:03 +02:00
|
|
|
v <- asks values
|
2020-05-27 23:18:35 +02:00
|
|
|
let (Object v') = v
|
|
|
|
pure $ v' HashMap.! f
|
|
|
|
|
2020-06-06 21:22:11 +02:00
|
|
|
episodeEnum :: EnumType
|
2020-06-07 06:16:45 +02:00
|
|
|
episodeEnum = EnumType "Episode" (Just description)
|
|
|
|
$ HashMap.fromList [newHope, empire, jedi]
|
|
|
|
where
|
|
|
|
description = "One of the films in the Star Wars Trilogy"
|
|
|
|
newHope = ("NEW_HOPE", EnumValue $ Just "Released in 1977.")
|
|
|
|
empire = ("EMPIRE", EnumValue $ Just "Released in 1980.")
|
|
|
|
jedi = ("JEDI", EnumValue $ Just "Released in 1983.")
|
2020-06-06 21:22:11 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
hero :: Resolve (Either SomeException)
|
2020-05-24 13:51:00 +02:00
|
|
|
hero = do
|
2019-12-31 08:29:03 +01:00
|
|
|
episode <- argument "episode"
|
2020-05-23 06:46:21 +02:00
|
|
|
pure $ character $ case episode of
|
2020-06-13 07:20:19 +02:00
|
|
|
Enum "NEW_HOPE" -> getHero 4
|
2020-05-27 23:18:35 +02:00
|
|
|
Enum "EMPIRE" -> getHero 5
|
|
|
|
Enum "JEDI" -> getHero 6
|
2019-12-31 08:29:03 +01:00
|
|
|
_ -> artoo
|
2016-02-19 19:21:32 +01:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
human :: Resolve (Either SomeException)
|
2020-05-24 13:51:00 +02:00
|
|
|
human = do
|
2019-12-31 08:29:03 +01:00
|
|
|
id' <- argument "id"
|
|
|
|
case id' of
|
2020-07-14 19:37:56 +02:00
|
|
|
String i -> pure $ maybe Null character $ getHuman i >>= Just
|
2020-07-17 07:05:03 +02:00
|
|
|
_ -> throwM InvalidArguments
|
2020-07-14 19:37:56 +02:00
|
|
|
|
2020-07-17 07:05:03 +02:00
|
|
|
droid :: Resolve (Either SomeException)
|
2020-05-24 13:51:00 +02:00
|
|
|
droid = do
|
2019-12-31 08:29:03 +01:00
|
|
|
id' <- argument "id"
|
|
|
|
case id' of
|
2020-07-14 19:37:56 +02:00
|
|
|
String i -> pure $ maybe Null character $ getDroid i >>= Just
|
2020-07-17 07:05:03 +02:00
|
|
|
_ -> throwM InvalidArguments
|
2019-07-02 20:07:26 +02:00
|
|
|
|
2020-05-27 23:18:35 +02:00
|
|
|
character :: Character -> Value
|
|
|
|
character char = Object $ HashMap.fromList
|
|
|
|
[ ("id", String $ id_ char)
|
|
|
|
, ("name", String $ name_ char)
|
|
|
|
, ("friends", List $ character <$> getFriends char)
|
|
|
|
, ("appearsIn", List $ Enum <$> catMaybes (getEpisode <$> appearsIn char))
|
|
|
|
, ("homePlanet", String $ either mempty homePlanet char)
|
|
|
|
, ("__typename", String $ typeName char)
|
2019-07-02 20:07:26 +02:00
|
|
|
]
|