graphql和wordpress“ TypeError:无法读取null的属性'width'”,特征图像

时间:2019-08-05 10:27:29

标签: graphql netlify

错误很明显,并非我的所有帖子都具有功能图片,但我不知道如何解决该错误,

我正在从youtube gatsby + wordpress

进行本教程

但是当我尝试部署netlify时,该错误不会让我这么做

这是错误

enter image description here

query LayoutQuery {
  allWordpressPost {
    edges {
      node {
        featured_media {
          id
          localFile {
            id
            childImageSharp {
              id
              fixed( width: 300 , height:300 ) {
                width
                height
                src
                srcSet
              }
            }
          }
        }
      }
    }
  }
}

如果内容存在,那是一种获取内容的方式吗?

谢谢

0 个答案:

没有答案