summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/Execute/Coerce.hs
AgeCommit message (Collapse)Author
2024-10-13Validate repeatable directivesEugen Wissner
2023-02-26Remove JSON support in the core packageEugen Wissner
2022-06-30Document usage of the json flagEugen Wissner
2021-12-24Put JSON support behind a flagEugen Wissner
2021-12-22Add Serialize and VariableValue value instancesEugen Wissner
- `Serialize` instance for `Type.Definition.Value`. - `VariableValue` instance for `Type.Definition.Value`. It makes it possible to use the library without an additional serialization format like JSON.
2021-02-19Replace Map with OrderedMapEugen Wissner
2020-08-22Remove encoder test based on old external filesEugen Wissner
2020-06-19Fix list input coercionEugen Wissner
2020-06-13Coerce resultEugen Wissner
Fixes #45.
2020-06-07Add description to the enum type valuesEugen Wissner
2020-06-06Coerce argument values properlyEugen Wissner
Fixes #44.
2020-05-29Define resolvers on type fieldsEugen Wissner
Returning resolvers from other resolvers isn't supported anymore. Since we have a type system now, we define the resolvers in the object type fields and pass an object with the previous result to them.
2020-05-25Split input/output types and values into 2 modulesEugen Wissner
2020-05-24Check pointEugen Wissner
2020-05-23Don't fail on invalid fragments and variablesEugen Wissner
2020-05-22Reject variables as default valuesEugen Wissner
2020-05-21Coerce variable valuesEugen Wissner