👀 Our most exciting product launch yet 🚀 Join us May 8th for Sanity Connect
Last updated October 05, 2021

GROQ-Powered Webhooks – Intro to Projections

By Martin Jacobsen & Knut Melvær

GROQ-powered webhooks in Sanity enable you to shape the payload of your outgoing requests to your exact specifications. In this article, we'll take a closer look at projections and how they can help you communicate clearly with whatever endpoint your webhook is talking to.

Sending eloquent webhook payloads with projections

The two GROQ super-powers webhooks have are filters and projections. The former lets you get real nitty-gritty about when your webhooks should trigger, and is discussed in an article of its own. In this article, we'll be discussing the latter.

Protip

GROQ is Sanity's open-source query language. Check out the docs, or watch a video tutorial to get started! When you're good to go, come back and check out the rest of this article!

Have it your way

GROQ projections let you build a JSON data structure using the document which triggered the webhook, and its values – from before and after the change – as building blocks. In your projections, you have access to the document returned from the filter in its entirety including both the original and updated values of every field. With the additional capability to join references multiple levels deep, you have the tools you need to design your outgoing requests to your specifications.

For those already familiar with GROQ; the projection is the bit that usually comes after the filter.

*[/* Filter goes here */] {
	// Projection goes here
	title,
	tags,
}

When we're configuring webhooks, the filter goes into a box of its own, and we are left with only the stuff in curly braces. An example of a GROQ projection with a simple join might look something like this:

{ 
	// returns the values of fields 'title' and 'description'
	// and follows the reference to another document of type
	// 'author' and assigns its 'name' value to 'authorName'
	title,
	description,
	"authorName": author->name 
}

The projection above would result in the JSON being sent as the payload of your webhook request being shaped something like this:

{
  "authorName": "Sinjoro Ajnulo",
  "description": "Lorem ipsum dolor sit amet",
  "title": "Hello, World!"
}

You can use string concatenation to shape your values into the format you need.

{
	// creates a string value assigned to 'status'
	"status": "The price of " + name + " was updated to " + price + "!"
}

Projecting array values works as expected. As does employing the ellipsis operator to retrieve all fields.

{
	// retrieves all fields
  ...,
	// returns an array of asset urls i.e 
	// ["http://cdn.sanity.io/…", "http://cdn.sanity.io/…"]
  "imageUrls": images[].asset->url
}

Gotcha

Gotcha! Projections in webhooks do not support sub-queries. In other words, you can’t access other documents in your dataset unless they are referenced from the document in question. For example, the following webhook projection will not work:
{ "relatedProducts": *[^.category._ref in categories] }

Delta-GROQ

Projections also support the before() and after() functions. These are part of the extension to the GROQ language called Delta-GROQ which lets you reason about changes made to documents. You might set a filter to trigger whenever the price field is updated and add the following projection (in this example, price is presumed to be a number):

{ 
  _id,
  "status": 
    "Price of " 
      + name 
      + " was changed from " 
      + before().string(price)
      + " to " 
      + after().string(price)
      // ⬆Tip: GROQ happily ignores line-breaks and comments, so feel
			// free to make your filters and projections a bit more readable
  }

The returned values of the before() and after()-functions can take projections as well! In fact they contain the document in its entirety in its pre-updated and updated versions, respectively.

{
  "beforeValues": before(){ name, price, description },
  "afterValues": after(){ name, price, description },
}

If you plan to receive webhooks from multiple projects and datasets, you can use the sanity::-namespace in GROQ to include information about the origins of the request:

{ 
  _id, 
  _type, 
  "projectId": sanity::projectId(), 
  "dataset": sanity::dataset() 
}

In conclusion

In this article we've looked at how GROQ-projections allow the precise construction of webhook payloads. This enables you to think of any API endpoint as a potential recipient for your webhooks, as you can shape the request to fit the format of the recipient. Things that previously would have needed some middleman cloud function to reformat your data to fit the need of the service in question can now be done entirely with projections. For more inspiration on GROQ, have a look over here!

Sanity – build remarkable experiences at scale

Sanity Composable Content Cloud is the headless CMS that gives you (and your team) a content backend to drive websites and applications with modern tooling. It offers a real-time editing environment for content creators that’s easy to configure but designed to be customized with JavaScript and React when needed. With the hosted document store, you query content freely and easily integrate with any framework or data source to distribute and enrich content.

Sanity scales from weekend projects to enterprise needs and is used by companies like Puma, AT&T, Burger King, Tata, and Figma.

Other guides by authors