query DefaultSEOQuery($path: String) {
site {
siteMetadata {
title
description
author
}
}
markdownRemark(frontmatter: {path: {eq: $path}}) {
frontmatter {
coverImage {
childImageSharp {
fluid(maxWidth: 800) {
src
}
}
}
}
}
}
но когда я пытаюсь сделать константу - const ogImage = data.markdownRemark.frontmatter.coverImage.childImageSharp.fluid.src - мне пишет - TypeError: Cannot read property 'frontmatter' of null - чяднт?
это запрос, а покажи схему
export const pageQuery = graphql` query($path: String) { markdownRemark(frontmatter: { path: { eq: $path } }) { frontmatter { title date(formatString: "DD MMMM YYYY", locale: "ru") path author excerpt tags coverImage { childImageSharp { fluid(maxWidth: 800) { ...GatsbyImageSharpFluid } } } } id html excerpt } } `
Обсуждают сегодня