summaryrefslogtreecommitdiff
path: root/package.yaml
AgeCommit message (Collapse)Author
2019-12-18Move Execute.Directive to Type.DirectiveEugen Wissner
Just to roughly follow the structure of the reference implementation.
2019-12-07Move Transform to Language.GraphQL.ExecuteEugen Wissner
Language.GraphQL.AST.Transform is an internal module. Even though it works with the AST, it is a part of the execution process, it translates the original parser tree into a simpler one, so the executor has less work to do. Language.GraphQL.AST should contain only the parser and be independent from other packages, so it can be used on its own.
2019-12-06Support directives (skip and include)Eugen Wissner
Fixes #24.
2019-11-27Release 0.6.0.0v0.6.0.0Eugen Wissner
2019-11-16Rewrite selections into a Sequence. Fix #21Eugen Wissner
2019-11-03Move related modules to Language.GraphQL.ASTEugen Wissner
Fixes #18. - `Language.GraphQL.Encoder` moved to `Language.GraphQL.AST.Encoder`. - `Language.GraphQL.Parser` moved to `Language.GraphQL.AST.Parser`. - `Language.GraphQL.Lexer` moved to `Language.GraphQL.AST.Lexer`. - All `Language.GraphQL.AST.Value` data constructor prefixes were removed. The module should be imported qualified. - All `Language.GraphQL.AST.Core.Value` data constructor prefixes were removed. The module should be imported qualified. - `Language.GraphQL.AST.Transform` is now isn't exposed publically anymore.
2019-10-22Release 0.5.1.0v0.5.1.0Eugen Wissner
2019-10-19Handle top-level fragmentsEugen Wissner
Fixes #17.
2019-09-27Introduce hspec-megaparsecEugen Wissner
Fixes #13.
2019-09-10Release 0.5.0.1v0.5.0.1Eugen Wissner
2019-08-14Release 0.5.0.0v0.5.0.0Eugen Wissner
2019-07-23Add singleError utility functionv0.4.0.0Eugen Wissner
2019-07-17Remove TODOEugen Wissner
Issues should be created instead.
2019-07-10Replace tasty and HUnit with HspecEugen Wissner
2019-07-07Change the main namespace to Language.GraphQLEugen Wissner
2019-07-06Add licence badgeEugen Wissner
2019-06-30Move the source code into src/Eugen Wissner
2019-06-28Replace Alternative with MonadPlusEugen Wissner
2019-06-21Parse queries with megaparsecEugen Wissner
2019-06-11Add package.yaml, update stack snapshot to 13.25Eugen Wissner