gatsby-source-sanity
Source plugin for pulling data from Sanity.io into Gatsby websites.
Table of content
Basic usage
yarn add gatsby-source-sanity@next
# or
npm i gatsby-source-sanity@next --save
module.exports = {
plugins: [
{
resolve: 'gatsby-source-sanity',
options: {
projectId: 'abc123',
dataset: 'blog',
token: process.env.MY_SANITY_TOKEN || 'my-token'
}
}
]
}
At this point you can choose to (and probably should) set up a GraphQL API for your Sanity dataset, if you have not done so already. This will help the plugin in knowing which types and fields exists, so you can query for them even without them being present in any current documents.
Go through http://localhost:8000/___graphql after running gatsby develop
to understand the created data and create a new query and checking available collections and fields by typing CTRL + SPACE
.
Options
Options | Type | Default | Description |
---|
projectId | string | | [required] Your Sanity project's ID |
dataset | string | | [required] The dataset to fetch from |
token | string | | Authentication token for fetching data from private datasets, or when using overlayDrafts Learn more |
overlayDrafts | boolean | false | Set to true in order for drafts to replace their published version. By default, drafts will be skipped. |
watchMode | boolean | false | Set to true to keep a listener open and update with the latest changes in realtime. |
Missing fields
Getting errors such as these?
Cannot query field "allSanityBlogPost"
Unknown field preamble
on type BlogPost
By deploying a GraphQL API for your dataset, we are able to introspect and figure out which schema types and fields are available and make them available to prevent this problem. Once the API is deployed it will be transparently be applied. If you have deployed your API and are still seeing similar issues, remember that you have to redeploy the API if your schema changes.
Some background for this problem:
Gatsby cannot know about the types and fields without having documents of the given types that contain the fields you want to query. This is a known problem with Gatsby - luckily there is ongoing work to solve this issue, which might remove the need for a deployed GraphQL API.
Overlaying drafts
Sometimes you might be working on some new content that is not yet published, which you want to make sure looks alright within your Gatsby site. By setting the overlayDrafts
setting to true
, the draft versions will as the option says "overlay" the regular document. In terms of Gatsby nodes, it will replace the published document with the draft.
Keep in mind that drafts do not have to conform to any validation rules, so your frontend will usually want to double-check all nested properties before attempting to use them.
Watch mode
While developing, it can often be beneficial to get updates without having to manually restart the build process. By setting watchMode
to true, this plugin will set up a listener which watches for changes. When it detects a change, the document in question is updated in real-time and will be reflected immediately.
When setting overlayDrafts
to true, each small change to the draft will immediately be applied.
Generating pages
Sanity does not have any concept of a "page", since it's built to be totally agnostic to how you want to present your content and in which medium, but since you're using Gatsby, you'll probably want some pages!
As with any Gatsby site, you'll want to create a gatsby-node.js
in the root of your Gatsby site repository (if it doesn't already exist), and declare a createPages
function. Within it, you'll use GraphQL to query for the data you need to build the pages.
For instance, if you have a project
document type in Sanity that you want to generate pages for, you could do something along the lines of this:
exports.createPages = async ({graphql, actions}) => {
const {createPage, createPageDependency} = actions
const result = await graphql(`
{
allSanityProject(filter: {slug: {current: {ne: null}}}) {
edges {
node {
title
description
tags
launchDate(format: "DD.MM.YYYY")
slug {
current
}
image {
asset {
url
}
}
}
}
}
}
`)
if (result.errors) {
throw result.errors
}
const projects = result.data.allSanityProject.edges || []
projects.forEach((edge, index) => {
const path = `/project/${edge.node.slug.current}`
createPage({
path,
component: require.resolve('./src/templates/project.js'),
context: {slug: edge.node.slug.current}
})
createPageDependency({path, nodeId: edge.node.id})
})
}
The above query will fetch all projects that have a slug.current
field set, and generate pages for them, available as /project/<project-slug>
. It will use the template defined in src/templates/project.js
as the basis for these pages.
Most Gatsby starters have some example of building pages, which you should be able to modify to your needs.
Remember to use the GraphiQL interface to help write the queries you need - it's usually running at http://localhost:8000/___graphql while running gatsby develop
.
Portable Text / Block Content
Rich text in Sanity is usually represented as Portable Text (previously known as "Block Content").
These data structures can be deep and hard to query, so any array containing portable text blocks will have a "raw" alternative that simply returns all the data without having to specify all the fields. For a field named body
in your Sanity document type, there will be a bodyRaw
field in Gatsby for you to use.
Using .env variables
If you don't want to attach your Sanity project's ID to the repo, you can easily store it in .env files by doing the following:
SANITY_PROJECT_ID = abc123
SANITY_DATASET = production
SANITY_TOKEN = my-super-secret-token
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`
})
module.exports = {
plugins: [
{
resolve: 'gatsby-source-sanity',
options: {
projectId: process.env.SANITY_PROJECT_ID,
dataset: process.env.SANITY_DATASET
token: process.env.SANITY_TOKEN
}
}
]
}
This example is based off Gatsby Docs' implementation.
Credits
Huge thanks to Henrique Cavalieri for doing the initial implementation of this plugin, and for donating it to the Sanity team. Mad props!
Big thanks to the good people backing Gatsby for bringing such a joy to our developer days!