This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
Releases: sanity-io/hydrogen-plugin-sanity
Releases · sanity-io/hydrogen-plugin-sanity
v0.4.0
v0.3.0
Breaking changes
- As of Hydrogen
0.10
it's no longer possible to store Sanity config inshopify.config.js
. - Sanity configuration must now be explicitly passed into every hook call in a corresponding
clientConfig
object, e.g.
const {sanityData} = useSanityQuery({
query: `*[_id == $homeId][0]{
...,
featuredProducts[] {
_id,
images[] {
asset {
_id
}
}
}
}`,
params: {homeId: 'homepage'}
clientConfig: {
projectId: 'yourSanityProjectId',
dataset: 'production',
apiVersion: 'v2021-06-07'
}
})