How I tweaked GraphQL to cut our homepage's load time by half · Project

Lyearn's website has configurable user homepage that links to a lot of content—courses, articles, live learning sessions, and various event cards such as meetings, habit tracking, todos, and more. Each of these cards was powered by its own MongoDB document. In other words, this was a full-blown dashboard.


Initially, all of the data was fetched using a single homepage GraphQL query. This query collated data from a multitude of MongoDB documents, which meant that users had to wait for several seconds for the complete API response before anything appeared on the screen. A loader was shown until the data arrived, but on longer dashboards, the waiting time could leave a poor first impression.


a whole lot of nothinga loader annoyed informed the users that their content was loading

To address this challenge, I rethought the frontend data fetching strategy:


sneak peek of the codeSneak peek of the logic 👀

In our development instance, these changes brought the homepage loading time down from over three seconds to under half a second with barely any backend modifications. This experience taught me the value of rethinking data fetching strategies. Sometimes, the key to a better user experience is simply breaking down a big problem into smaller, more manageable parts - visible progress helps, and this isn’t just about coding :)


before & afterBefore (top) and after (bottom) the optimization