When using Gatbsy Cloud webhook, whenever publishing an update on a page if you are not getting response as intended then try adding cachebust: true
to the options in your graphql
query for the content as shown below
export const landingPageQuery = graphql`
query($path: String!) {
allBuilderModels {
landingPage(
target: { urlPath: $path }
limit: 1,
options: {cachebust: true},
) {
content
}
}
}
`;