This past year, our team started using a GraphQL orchestration layer that connects various APIs with multiple front-end apps including iOS. It also handles caching and extracts some business logic out of our client apps. This helped us not only to be more consistent with the way we fetch data across apps, but also improved developer happiness and even bridged teams by having our web and iOS developers work with the same API layer. This got me thinking what other problems GraphQL could solve at Artsy.

I work on the Publishing Team at Artsy, and we’ve recently been focused on page speed as a KPI. With so many ways of measuring speed, it’s a daunting task but for this post, I’ll focus on the way we handled things on the server-side and how integrating GraphQL on our API improved page speed.

Prior to GraphQL

In our publishing CMS called Positron, we serve a separate API, database, and front-end from the rest of the Artsy stack. We’re also responsible for the delivery and presentation of the content itself. Over the past year we’ve focused a lot on how the content appears, and now we’ve opened up time to focus on speed since in the land of content, every second counts.

Before we went ahead with adding a GraphQL-based endpoint to Positron, I spent about a week and refactoring our current codebase. We refactored our router code to make less fetches, made better use of caching, and moved some below-the-fold rendering into the client side. These are important steps towards a faster page, but it doesn’t push our technology in a direction that lets us reimagine things.

Speed Issues

We split the speed problem in two: Server Response Time (server-side) and Document Interactive Time (client-side). We currently use Google Analytics to track these metrics. There are some inaccuracies with GA such as small sampling, geographic noise (countries with different download speeds), and timeouts being counted as zero, but for our initial testing this will suffice for relative measuring.

Enter GraphQL and JoiQL

Our very own Craig Spaeth recently started working on a project called Mural. It’s a framework for React and GraphQL. One library that came out of this project is called JoiQL. It’s a The main purpose of JoiQL is to convert Joi schemas into GraphQL schemas.

We already use Joi in Positron so creating a GraphQL-based endpoint was trivial with JoiQL. Note that while JoiQL is currently used in production, it’s still a beta project! Below is an example of how the JoiQL setup works.

const joiql = require('../')
const { object, string, number, array, date } = require('joi')
const app = require('express')()
const graphqlHTTP = require('express-graphql')

// Given a Joi schema:
const Article = object({
  title: string(),
  body: string(),
  published_at: date()
}).meta({
  args: { id: number().required() }
})

// Define api with JoiQL like this:
const api = joiql({
  query: {
    article: Article
  }
})

// Resolve the request using a Koa 2 style middleware pattern:
api.use((ctx, next) => {
  return new Promise (resolve, reject) ->
    // Method that fetches an article based on the query
    findArticle(ctx.req.query.article.args), (err, results) ->
      ctx.res.article = results.article
      next()
      resolve()
})

// Finally, mount our schema to express:
app.use('/graphql', graphqlHTTP({
  schema: api.schema,
  graphiql: true
}))
app.listen(3000, () => console.log('listening on 3000'))

You can see how simple it becomes to convert apps that already use Joi with JoiQL. Joi provides a nice API for building GraphQL schemas with minimal boilerplate and we also get a nice Koa 2 style middleware pattern that lets us hook into a downstream/upstream flow. This downstream/upstream flow could be useful later on if we were to get really granular with measuring speed. For instance, if we decide to track the speed of the whole lifecycle of a request, we could do something like this:

api.use((ctx, next) => {
  startTIme = Date.now()
  next()
  console.log(Date.now() - startTime)
}

api.use((ctx, next) => {
  // fetch content here
  next() #we get bumped back up after this
})

Results

The two features of GraphQL that have been helpful for reducing page speed are:

  1. Reduced payload because you only request the data you need
  2. Multiple fetches can be coalesced into a single request

Not surprisingly, decreased payload and coalesced requests are the same two features Orta describes in part of his post on the killer features of GraphQL for Mobile.

Reduced Payload

Reduced payload turned out to be one of the biggest factors in reducing speed. Just after October 27 we switched over to using GraphQL on our mobile articles landing page.

</div></div><div class='meta-container'><header> </header></div><div class='date-container'> </div><div class='content-container'><div class='entry-content'>

Since we were previously getting back collection of articles with all of its content, rendering a simple page with a list of articles meant the payload size was unnecessarily huge. Now, we only request a few things like the title and image without having to do any extra work. This is especially important for mobile devices where we encounter slow network speeds!

Multiple fetches

Although we haven’t made use of this in production yet, I anticipate that the ability to coalesce requests will be significant. For example, to render an article page, there are up to five fetches that can be requested by our front-end app with a normal REST API. Now, we can combine the requests to a single fetch, which moves the responsibility of coalescing requests from aggregating slow HTTP requests to fanning out fast database queries. If we aggregate the request and cache the response using a client like Lokka, our future looks bright.

What’s next?

Besides making use of this new endpoint on all the things, I think the next big win with GraphQL is to add mutations. By adding support for mutations, we can modify our data with GraphQL just as simply as we can query it.

We currently use a combination of Backbone and React to edit articles on our front-end CMS. After we move our CMS’s data platform to GraphQL, we can move away from frameworks like Backbone and towards managing state containers like Redux which are made to work with GraphQL. Features like revision history and undo events would feel natural with state containers like Redux and a joy for our editors!

In the context of speed, some other topics I look forward to exploring are optimizing expensive database queries and client-side asset compression.

Categories: graphql, javascript, joi, positron

Part of a series: Omakase