summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-22Release 0.5.1.0v0.5.1.0Eugen Wissner
2019-10-19Handle top-level fragmentsEugen Wissner
Fixes #17.
2019-10-11Inline fragments without typeEugen Wissner
Fixes #11.
2019-10-08Support inline fragments on typesEugen Wissner
2019-10-01Deprecate plural type aliasesEugen Wissner
Fixes #16. Deprecates: - Language.GraphQL.AST.Arguments - Language.GraphQL.AST.Directives - Language.GraphQL.AST.VariableDefinitions
2019-09-30Set STACK_ROOT to cache dependencies in the CIEugen Wissner
Set STACK_ROOT to cache dependencies between the builds.
2019-09-29Ignore graphql.cabalEugen Wissner
This file is generated and for releases another version is generated anyway.
2019-09-27Introduce hspec-megaparsecEugen Wissner
Fixes #13.
2019-09-25Document undocumented modulesEugen Wissner
Fixes #15.
2019-09-20Fix haddoc warningsEugen Wissner
Fix #14.
2019-09-13Add pending inline fragment testsEugen Wissner
2019-09-10Release 0.5.0.1v0.5.0.1Eugen Wissner
2019-09-06Fix #12Eugen Wissner
2019-09-01Deprecate enum, enumA, wrappedEnum, wrappedEnumAEugen Wissner
These functions are from Language.GraphQL.Schema. There are actually only two generic types in GraphQL: Scalars and objects. Enum is a scalar value. According to the specification enums may be serailized to strings. And in the current implementation they used untyped strings anyway, so there is no point to have differently named functions with the same implementation as their scalar counterparts.
2019-08-30Deprecate Language.GraphQL.Execute.SchemaEugen Wissner
It is not a schema (at least not a complete one), but a resolver list, and the resolvers should be provided by the user separately, because the schema can originate from a GraphQL document. Schema name should be free to provide a data type for the real schema later.
2019-08-29Document all public symbols.Eugen Wissner
Mostly basic documentation. Fixes #4.
2019-08-26Provide more documentation on functions and typesEugen Wissner
2019-08-14Release 0.5.0.0v0.5.0.0Eugen Wissner
2019-08-13Escape special characters in the encoded stringsEugen Wissner
Fixes #2.
2019-08-12Update stack snapshot to 14.0Eugen Wissner
2019-08-05Make all encoder functions return lazy textEugen Wissner
2019-08-04Provide more information in the REAMEEugen Wissner
Provide more information and documentation references in the README.
2019-08-03Implement indentation in the encoderEugen Wissner
2019-08-02Put spaces between tokens in the pretty printerEugen Wissner
2019-07-31Introduce formatter type for the encoderEugen Wissner
... to distinguish between minified and pretty printing.
2019-07-27Test the encoder with the unminified documentEugen Wissner
2019-07-25Implement multiple operation supportEugen Wissner
2019-07-23Add singleError utility functionv0.4.0.0Eugen Wissner
2019-07-22Parse the BOM header if anyEugen Wissner
2019-07-20Make the tutorial to compile againEugen Wissner
- Remove generated documentation leaving only documentation sources. - Add CI job checking that the tutorial is up to date.
2019-07-19Report parse errors with line and column numbersEugen Wissner
2019-07-18Reuse common types from AST.CoreEugen Wissner
2019-07-17Remove TODOEugen Wissner
Issues should be created instead.
2019-07-14Make all exports explicitEugen Wissner
2019-07-10Replace tasty and HUnit with HspecEugen Wissner
2019-07-08Constrain the resolvers with MonadIOEugen Wissner
This replaces the most usages of MonadPlus, which is not appropriate for the resolvers, since a resolver is unambiguously chosen by the name (no need for 'mplus'), and the resolvers are often doing IO.
2019-07-07Change the main namespace to Language.GraphQLEugen Wissner
2019-07-06Add licence badgeEugen Wissner
2019-07-05Allow resolvers to return arbitrary nested listsEugen Wissner
2019-07-04Update CI settingsEugen Wissner
2019-07-03Add nullable typesEugen Wissner
2019-07-02Introduce monad transformer for resolversEugen Wissner
Now the errors in the resolvers can be handled and 3 tests throwing errors pass now. Another test fail but it requires distinguisching nullable and non-nullable values.
2019-07-01Pass root field names together with resolversEugen Wissner
2019-06-30Move the source code into src/Eugen Wissner
2019-06-29Remove GHCI configEugen Wissner
2019-06-28Replace Alternative with MonadPlusEugen Wissner
2019-06-27Restore error handlingEugen Wissner
2019-06-26Fix ambigious Int resolution in the lexer testsEugen Wissner
2019-06-23Enable mutationsEugen Wissner
2019-06-21Parse queries with megaparsecEugen Wissner