Sanity logosanity.ioAll Systems Operational© Sanity 2026
Change Site Theme
Sanity logo

Documentation

    • Overview
    • Platform introduction
    • Next.js quickstart
    • Nuxt.js quickstart
    • Astro quickstart
    • React Router quickstart
    • Studio quickstart
    • Build with AI
    • Content Lake
    • Functions
    • APIs and SDKs
    • Agent Actions
    • Visual Editing
    • Blueprints
    • Platform management
    • Dashboard
    • Studio
    • Canvas
    • Media Library
    • App SDK
    • Content Agent
    • HTTP API
    • CLI
    • Libraries
    • Specifications
    • Changelog
    • User guides
    • Developer guides
    • Courses and certifications
    • Join the community
    • Templates

Changelog

Track new features, improvements, and fixes across all Sanity products.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Changelog

Track new features, improvements, and fixes across all Sanity products.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

On this page

Filter by product

Filter by product

Apps
  • 6
  • 1
  • 18
  • 1
  • 6
  • 7
  • 6
  • 14
  • 3
  • 310
  • 2
  • 1
Integrations & Libraries
  • 15
  • 6
  • 2
  • 4
  • 2
  • 2
  • 9
  • 1
  • 1
  • 1
  • 6
  • 9
  • 4
  • 1
  • 3
Subscribe to the changelog
  • RSS (Latest)
  • RSS (Full)
  • JSON Feed (Latest)
  • JSON Feed (Full)
  1. Changelog
  2. Integrations & Libraries
  3. Sanity Connect for Shopify

Shopify shop domain added to sync

Published: November 4, 2025

v2025-11-04

Sanity Connect now includes the Shopify shop domain when syncing to Sanity documents (products, productVariants, collections). If you've configured multiple Shopify stores to sync to a shared Sanity dataset, this field can be used to identify which store the product or collection came from.

The shop domain field will be added for all active syncs, which will add new data that your existing studio schemas does not define. When loading documents in the studio, you'll see a warning alerting you of the new data:

To remove the warning, you can add the new field to your Studio schema.

Example type:

import {defineField} from 'sanity'

export const shopType = defineField({
  name: 'shop',
  title: 'Shop',
  type: 'object',
  readOnly: true,
  fields: [
    defineField({
      name: 'domain',
      title: 'Domain',
      type: 'string',
    }),
  ],
})

Related documentation

  • Displaying Sanity content in Shopify

Loading...

Related documentation

  • Displaying Sanity content in Shopify

import {defineField} from 'sanity'

export const shopType = defineField({
  name: 'shop',
  title: 'Shop',
  type: 'object',
  readOnly: true,
  fields: [
    defineField({
      name: 'domain',
      title: 'Domain',
      type: 'string',
    }),
  ],
})

Previous Changelog

Customize Shopify Metaobject Title

September 2, 2025

Sanity Connect for Shopify