Last active
August 5, 2019 13:18
-
-
Save hendrikniemann/348b9357c18841b123e9b14480ad80ba to your computer and use it in GitHub Desktop.
Medium Post: Why is a pure FP GraphQL implementation so hard to build?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| loadCommentsResolver :: Aff Post -> Unit -> Context -> Aff (Array Comment) | |
| loadCommentsResolver affPost args context = affPost >>= \post -> | |
| loadCommentsByPostId post.id context.dbConnection | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment