• GraphQL error propagation

    In this post we gonna take a look at available options on how to propagate errors in GraphQL

    August 19, 2018 - 7 minute read -
    F# GraphQL Clean Code Patterns
  • Testing GraphQL queries with FsCheck library - Union GraphTypes

    GraphQL essentially allows users to define queries from a front-end to gather concrete data. So as it looks it is completely different than a standard REST endpoint. GraphQL differs queries which only gather data from those which also mutates them. In this article, I want to concentrate on queries which only gather some data and how to test them via FsCheck and F#. This articles is a continuation of previous post: https://www.mnie.me/2018-05-21-graphQLTestingPart2/

    May 29, 2018 - 6 minute read -
    F# GraphQL Clean Code Tests TDD Automated Tests Patterns
  • Testing GraphQL queries with FsCheck library - Shrinking input

    GraphQL essentially allows users to define queries from a front-end to gather concrete data. So as it looks it is completely different than a standard REST endpoint. GraphQL differs queries which only gather data from those which also mutates them. In this article, I want to concentrate on queries which only gather some data and how to test them via FsCheck and F#. This articles is a continuation of previous post https://www.mnie.me/2018-05-07-graphQLTesting/

    May 21, 2018 - 8 minute read -
    F# GraphQL Clean Code Tests TDD Automated Tests Patterns
  • Testing GraphQL queries with FsCheck library

    GraphQL essentially allows users to define queries from a front-end to gather concrete data. So as it looks it is completely different than a standard REST endpoint. GraphQL differs queries which only gather data from those which also mutates them. In this article, I want to concentrate on queries which only gather some data and how to test them via FsCheck and F#.

    May 7, 2018 - 11 minute read -
    F# GraphQL Clean Code Tests TDD Automated Tests Patterns