| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Language.GraphQL
Description
This module provides the functions to parse and execute GraphQL queries.
Documentation
Arguments
| :: MonadIO m | |
| => NonEmpty (Resolver m) | Resolvers. |
| -> Text | Text representing a |
| -> m Value | Response. |
If the text parses correctly as a GraphQL query the query is
executed using the given Resolvers.
Arguments
| :: MonadIO m | |
| => NonEmpty (Resolver m) | Resolvers. |
| -> Subs | Variable substitution function. |
| -> Text | Text representing a |
| -> m Value | Response. |
If the text parses correctly as a GraphQL query the substitution is
applied to the query and the query is then executed using to the given
Resolvers.