Path to remote working culture (2/3)

Now that the topics to improve remote working have been decided I will show you some concrete…

Solving GraphQL N+1 in PHP

The webonyx/graphql-php package solves the N+1 problem using their deferred responses. The solution is good, but you will repeat this boilerplate in every resolve.

<?php
...
'resolve' => function($blogStory) use ($repository) {…