The Apollo Graphql documention offers a pretty comprehensive guide on how to test your Graphql API. But sure its different once you implement tests for your non generic project. That is why I wrote this post. First I would like to introduce you to integration tests and how they are different from the other testing levels. And then I’ll give you a hands on experience for writing integration tests for Apollo Graphql with Ava.
There are these moments when you face a sheer unsolvable conflict in life. This conflict can be of a personal nature or be a dispute at the workplace. A lack of sleep might be a side effect. A lack of orientation and perspective become an enduring feeling.
The markdown ecosystem is growing. Markdown has become an universal standard with various extensions. Software repositories, websites, documentation systems, all store their content in markdown. This blog is written in markdown as well.
Of course there are downsides to markdown. Portability comes at the cost of missing features. Thus you have to built them on your own. If you run a blog you probably reference tons of other stuff on the internet. Links that point to usefult resources or nowhere. I wanted to find out which links in my markdown documents are dead.
I tend to come up with the important questions always a bit late. “Why do I not like working in hierarchical organizations?” is the question I should have asked a year ago. I gave it some thought and here are my notes.
On my latest Hacker News trip I came along this fine post. I already told many people that they must avoid using VPN services if possible. In most cases there is no need and this post describes it very well.
Every website has to support dark mode now. Probably because of the new iPhone launch or so. Nonetheless, I added a bunch of CSS to this theme as well.
This is the final post of my GraphQL Auth series. Before reading this post checkout post 1 and post 2.
As mentioned in my last post we need to polish our authentication solution. First we wanna ensure that the JWT token expires. Second, I think the isAuthenticated directive is insufficient for proper permission management on our types, queries and mutations. We need a role based solution. While the first point is simple to implement, the second is more complex and definitely requires walking through the previous posts.