Sanity Studio Tool and Document Action for empowering content editors to migrate Documents and Assets between Sanity Datasets and Projects from inside the Studio.
From the root directory of your studio
sanity install @sanity/cross-dataset-duplicator
This plugin is designed as a convenience for Authors to make small, infrequent content migrations between Datasets.
- This plugin should be used in conjunction with a reliable backup strategy.
- Proceed with caution as this plugin can instantly write changes to Datasets.
- Larger migrations may take more time, especially with Assets. The plugin tries to mitigate this with rate limiting asset uploads to 3 at a time.
- If an Asset is already present at the destination, there's no need to duplicate it again.
- Before starting a Duplication you can select which Documents and Assets to include. Migrations will fail if every Referenced Document or Asset is not included in the transaction or already present at the destination Dataset.
The Duplicate Tool allows you to migrate Documents that are returned from any GROQ query.
The Duplicate to... Document Action allows you to migrate an individual Document.
Note: If your Studio registered its own Document Actions, the plugin config will be overruled. See "Importing the Document Action" below.
You must have Spaces configured to use this plugin. Spaces are still listed as an experimental feature but have been supported for some time.
All Datasets setup in Spaces will become selectable "destinations" for Migrations.
Once setup, you will see a dropdown menu next to the Search bar in the Studio with the Datasets you have configured in Spaces.
The plugin has some configuration options. These can be set by adding a config file to your Studio
// ./config/@sanity/cross-dataset-duplicator.json
{
"tool": true,
"types": ["article", "page"]
}
Options:
tool
(boolean, default: true) – Set whether the Migration Tool is enabled.types
(Array[String], default: []) – Set which Schema Types the Migration Action should be enabled in.
To Duplicate the original files of Assets, an API Token with Viewer permissions is required. You will be prompted for this the first time you attempt to use either the Tool or Document Action on any Dataset.
This plugin uses Sanity Secrets to store the token in the Dataset itself.
You can create API tokens in manage
If you want to duplicate data across different projects, you need to enable CORS for the different hosts. This allows different projects to connect to each other through the project API. CORS origins configuration can be found in your project page, under the API tab.
In your Studio's sanity.json
file, look for the document-actions/resolver
part, it will look like this:
{
"implements": "part:@sanity/base/document-actions/resolver",
"path": "./src/document-actions"
}
Now update your Studio's Document Actions resolver to be something like this
import defaultResolve from 'part:@sanity/base/document-actions'
import {DuplicateToAction} from '@sanity/cross-dataset-duplicator'
import config from 'config:@sanity/cross-dataset-duplicator'
export default function resolveDocumentActions(props) {
const defaultActions = defaultResolve(props)
// This will look through the "types" array in your migration.json config file
// If the type of this document is found in that array, the Migrate Action will show
if (config?.types?.length && config.types.includes(props.type)) {
return [...defaultActions, DuplicateToAction]
}
// ...all your other document action code
return defaultActions
}
- Save predefined GROQ queries in the Tool to make bulk repeated Migrations simpler
- Config options for allowed migrations (eg Dev -> Staging but not Dev -> Live)
- Config options for permissions/user role checks