2015-10-17 13:19:00 +02:00
|
|
|
{-# LANGUAGE CPP #-}
|
2016-01-30 12:29:49 +01:00
|
|
|
{-# LANGUAGE LambdaCase #-}
|
2015-10-17 13:19:00 +02:00
|
|
|
module Data.GraphQL.Execute where
|
|
|
|
|
|
|
|
#if !MIN_VERSION_base(4,8,0)
|
2016-02-11 14:24:31 +01:00
|
|
|
import Control.Applicative ((<$>), pure)
|
2016-02-08 17:30:18 +01:00
|
|
|
import Data.Traversable (traverse)
|
2015-10-17 13:19:00 +02:00
|
|
|
#endif
|
2016-01-30 12:29:49 +01:00
|
|
|
import Control.Applicative (Alternative, empty)
|
2016-02-08 17:30:18 +01:00
|
|
|
import Data.Foldable (fold)
|
2015-10-17 13:19:00 +02:00
|
|
|
|
2016-01-26 12:43:18 +01:00
|
|
|
import qualified Data.Aeson as Aeson
|
2016-02-08 17:30:18 +01:00
|
|
|
import qualified Data.HashMap.Strict as HashMap
|
2015-10-17 13:19:00 +02:00
|
|
|
|
|
|
|
import Data.GraphQL.AST
|
2016-02-11 14:24:31 +01:00
|
|
|
import Data.GraphQL.Schema (Resolver, Schema(..))
|
|
|
|
import qualified Data.GraphQL.Schema as Schema
|
2015-10-17 13:19:00 +02:00
|
|
|
|
2016-02-11 14:24:31 +01:00
|
|
|
execute :: (Alternative m, Monad m) => Schema m -> Document -> m Aeson.Value
|
2016-02-08 17:30:18 +01:00
|
|
|
execute (Schema resolv) doc = selectionSet resolv =<< query doc
|
|
|
|
|
2016-02-11 14:24:31 +01:00
|
|
|
query :: Alternative f => Document -> f SelectionSet
|
2016-02-08 17:30:18 +01:00
|
|
|
query (Document [DefinitionOperation (Query (Node _ _ _ sels))]) = pure sels
|
2016-02-11 14:24:31 +01:00
|
|
|
query _ = empty
|
|
|
|
|
|
|
|
selectionSet :: Alternative f => Resolver f -> SelectionSet -> f Aeson.Value
|
|
|
|
selectionSet resolv = fmap (Aeson.Object . fold) . traverse (selection resolv)
|
|
|
|
|
|
|
|
selection :: Alternative f => Resolver f -> Selection -> f Aeson.Object
|
|
|
|
selection resolv (SelectionField field@(Field _ name _ _ _)) =
|
|
|
|
fmap (HashMap.singleton name) $ Aeson.toJSON <$> resolv (fieldToInput field)
|
|
|
|
selection _ _ = empty
|
|
|
|
|
|
|
|
-- * AST/Schema conversions
|
|
|
|
|
|
|
|
argument :: Argument -> Schema.Argument
|
|
|
|
argument (Argument n (ValueInt v)) = (n, Schema.ScalarInt $ fromIntegral v)
|
|
|
|
argument (Argument n (ValueString (StringValue v))) = (n, Schema.ScalarString v)
|
|
|
|
argument _ = error "argument: not implemented yet"
|
|
|
|
|
|
|
|
fieldToInput :: Field -> Schema.Input
|
|
|
|
fieldToInput (Field _ n as _ sels) =
|
|
|
|
Schema.InputField n (argument <$> as) (fieldToInput . selectionToField <$> sels)
|
|
|
|
|
|
|
|
selectionToField :: Selection -> Field
|
|
|
|
selectionToField (SelectionField x) = x
|
|
|
|
selectionToField _ = error "selectionField: not implemented yet"
|