Implement first StarWars end-to-end test

`execute` still needs to be implemented.
This commit is contained in:
Danny Navarro
2015-10-19 12:19:39 +02:00
parent 3f30a44d1d
commit 4e5dc3433a
5 changed files with 71 additions and 42 deletions

View File

@ -10,5 +10,7 @@ import qualified Data.Aeson as Aeson (Value)
import Data.GraphQL.AST
import Data.GraphQL.Schema
execute :: Applicative f => Schema -> Document -> f Aeson.Value
execute = undefined
type Response = Aeson.Value
execute :: Applicative f => Schema f -> Document -> f Response
execute _schema _doc = undefined