DEV Community

Discussion on: Blog with Pagination - Guide to Gatsby WordPress Starter Advanced with Previews, i18n and more

Collapse
 
deadband profile image
Quent McCoy

First off, great work with this tutorial! Thank you for all your effort.

I thought I would mention a problem I was having and what I did to resolve it in case others have the same issue.

I had been running into this error:
TypeError: Cannot destructure property wpgraphql of 'undefined' or 'null'

I traced it back to the PostTemplateFragment and BlogPreviewFragment within the data.js file. Apparently, sourceUrl under 'FeaturedImage' as well as name and slug under 'author' need to be wrapped in 'node'. Example:

featuredImage {
      node {
        sourceUrl
      }
    }

and

author {
      node {
        name
        slug
      }
    }

Perhaps this is the result of a breaking change to wpgraphql?

After adjusting those fragments the project built successfully again.