2016-03-15 14:02:34 +01:00
|
|
|
-- | This module provides the functions to parse and execute @GraphQL@ queries.
|
2016-02-05 12:32:35 +01:00
|
|
|
module Data.GraphQL where
|
|
|
|
|
2016-03-12 00:59:51 +01:00
|
|
|
import Control.Applicative (Alternative)
|
2016-02-05 12:32:35 +01:00
|
|
|
|
|
|
|
import Data.Text (Text)
|
|
|
|
|
|
|
|
import qualified Data.Aeson as Aeson
|
|
|
|
import qualified Data.Attoparsec.Text as Attoparsec
|
|
|
|
|
|
|
|
import Data.GraphQL.Execute
|
|
|
|
import Data.GraphQL.Parser
|
|
|
|
import Data.GraphQL.Schema
|
|
|
|
|
2016-03-12 00:59:51 +01:00
|
|
|
import Data.GraphQL.Error
|
|
|
|
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a 'Schema' and text representing a @GraphQL@ request document.
|
|
|
|
-- If the text parses correctly as a @GraphQL@ query the query is
|
|
|
|
-- executed according to the given 'Schema'.
|
|
|
|
--
|
|
|
|
-- Returns the response as an @Aeson.@'Aeson.Value'.
|
2017-02-04 01:48:26 +01:00
|
|
|
graphql :: (Alternative m, Monad m) => Schema m -> Text -> m Aeson.Value
|
2016-02-15 14:25:15 +01:00
|
|
|
graphql = flip graphqlSubs $ const Nothing
|
|
|
|
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a 'Schema', a variable substitution function and text
|
|
|
|
-- representing a @GraphQL@ request document. If the text parses
|
|
|
|
-- correctly as a @GraphQL@ query the substitution is applied to the
|
|
|
|
-- query and the query is then executed according to the given 'Schema'.
|
|
|
|
--
|
|
|
|
-- Returns the response as an @Aeson.@'Aeson.Value'.
|
2017-02-04 01:48:26 +01:00
|
|
|
graphqlSubs :: (Alternative m, Monad m) => Schema m -> Subs -> Text -> m Aeson.Value
|
2016-02-15 14:25:15 +01:00
|
|
|
graphqlSubs schema f =
|
2016-03-12 00:59:51 +01:00
|
|
|
either parseError (execute schema f)
|
2016-02-15 14:25:15 +01:00
|
|
|
. Attoparsec.parseOnly document
|