2016-03-15 14:02:34 +01:00
|
|
|
-- | This module provides the function to execute a @GraphQL@ request --
|
|
|
|
-- according to a 'Schema'.
|
2016-02-17 13:13:01 +01:00
|
|
|
module Data.GraphQL.Execute (execute) where
|
2015-10-17 13:19:00 +02:00
|
|
|
|
2016-02-17 18:13:10 +01:00
|
|
|
import Control.Applicative (Alternative)
|
2016-02-15 14:25:15 +01:00
|
|
|
import Data.Maybe (catMaybes)
|
2015-10-17 13:19:00 +02:00
|
|
|
|
2016-01-26 12:43:18 +01:00
|
|
|
import qualified Data.Aeson as Aeson
|
2015-10-17 13:19:00 +02:00
|
|
|
|
|
|
|
import Data.GraphQL.AST
|
2016-02-17 18:13:10 +01:00
|
|
|
import Data.GraphQL.Schema (Schema(..))
|
2016-02-11 14:24:31 +01:00
|
|
|
import qualified Data.GraphQL.Schema as Schema
|
2015-10-17 13:19:00 +02:00
|
|
|
|
2016-03-12 00:59:51 +01:00
|
|
|
import Data.GraphQL.Error
|
|
|
|
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a 'Schema', a variable substitution function ('Schema.Subs'), and a
|
|
|
|
-- @GraphQL@ 'document'. The substitution is applied to the document using
|
|
|
|
-- 'rootFields', and the 'Schema''s resolvers are applied to the resulting fields.
|
|
|
|
--
|
|
|
|
-- Returns the result of the query against the 'Schema' wrapped in a /data/ field, or
|
|
|
|
-- errors wrapped in an /errors/ field.
|
2016-03-09 01:15:46 +01:00
|
|
|
execute :: Alternative f
|
2016-02-19 19:21:32 +01:00
|
|
|
=> Schema.Schema f -> Schema.Subs -> Document -> f Aeson.Value
|
2017-01-28 18:15:14 +01:00
|
|
|
execute resolvers subs doc = undefined -- resolver resolvs $ rootFields subs doc
|
2016-02-17 18:13:10 +01:00
|
|
|
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a variable substitution function and a @GraphQL@ document.
|
2016-03-09 01:15:46 +01:00
|
|
|
-- If the document contains one query (and no other definitions)
|
|
|
|
-- it applies the substitution to the query's set of selections
|
|
|
|
-- and then returns their fields.
|
2017-01-28 18:15:14 +01:00
|
|
|
-- rootFields :: Schema.Subs -> Document -> [Field]
|
|
|
|
-- rootFields subs (Document [DefinitionOperation (Query (Node _varDefs _ _ sels))]) =
|
|
|
|
-- Schema.fields $ substitute subs <$> sels
|
|
|
|
-- rootFields _ _ = []
|
2016-02-17 18:13:10 +01:00
|
|
|
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a variable substitution function and a selection. If the
|
|
|
|
-- selection is a field it applies the substitution to the field's
|
|
|
|
-- arguments using 'subsArg', and recursively applies the substitution to
|
|
|
|
-- the arguments of fields nested in the primary field.
|
2017-01-28 18:15:14 +01:00
|
|
|
-- substitute :: Schema.Subs -> Selection -> Selection
|
|
|
|
-- substitute subs (SelectionField (Field alias name args directives sels)) =
|
|
|
|
-- SelectionField $ Field
|
|
|
|
-- alias
|
|
|
|
-- name
|
|
|
|
-- -- TODO: Get rid of `catMaybes`, invalid arguments should raise an error
|
|
|
|
-- (catMaybes $ subsArg subs <$> args)
|
|
|
|
-- directives
|
|
|
|
-- (substitute subs <$> sels)
|
|
|
|
-- substitute _ sel = sel
|
2016-02-17 18:13:10 +01:00
|
|
|
|
|
|
|
-- TODO: Support different value types
|
2016-03-15 14:02:34 +01:00
|
|
|
-- | Takes a variable substitution function and an argument. If the
|
|
|
|
-- argument's value is a variable the substitution is applied to the
|
|
|
|
-- variable's name.
|
2017-01-28 18:15:14 +01:00
|
|
|
-- subsArg :: Schema.Subs -> Argument -> Maybe Argument
|
|
|
|
-- subsArg subs (Argument n (ValueVariable (Variable v))) =
|
|
|
|
-- Argument n . ValueString <$> subs v
|
|
|
|
-- subsArg _ arg = Just arg
|