Skip to content

Instantly share code, notes, and snippets.

@hendrikniemann
Last active August 5, 2019 13:18
Show Gist options
  • Select an option

  • Save hendrikniemann/348b9357c18841b123e9b14480ad80ba to your computer and use it in GitHub Desktop.

Select an option

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?
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