GraphQL and PostGresQL with PostGraphile

How I implemented PostGraphile for data management in my web app

Background

In my react gatsby app, how do I retrieve and manipulate data from my backend.

Solution

Used postgraphile to expose a graphQL API endpoint. PostGraphile handles the resolver functions and data schema is closely tied to the database schema so it follows natural thinking in how you organise your data.

More implementation details to be published soon.