Hi there
I’m using Gatsby V4.4.0 along with Gatsby Cloud and "gatsby-source-datocms": "^3.0.11",
. I have a model that has some nested modular content inside (a modular content field that can have blocks with modular content field inside). Here’s a simplified structure of the model:
title
blocks {
...DatoCmsTestimonial {
content {
title
}
}
}
The blocks
field can have other block type, the content
field has only one block type.
Whenever I try to update / add or remove a block in the content
field, the update does not get through production. The webhook is triggered and sends the right message, but the change is not reflected in the page-data
of the page
The other fields (such as title
or the other fields in DatoCmsTestimonial
) can be updated
My webhooks are configured as described here https://www.datocms.com/docs/gatsby/gatsby-cloud
Any idea on how to solve this ?