我想在graphql查询中使用诸如变量的前题数据。
>>>frontmatter image width<<<
和>>>frontmatter images extra width<<<
是我希望我的width
从最前面去的地方。
images_extra
是一个使问题复杂化的数组
export const imageQuery = graphql`
query($id: String!) {
markdownRemark(id: { eq: $id }) {
frontmatter {
image {
source {
childImageSharp {
fluid(maxWidth: >>>frontmatter image width<<<, quality: 90) {
...GatsbyImageSharpFluid_withWebp
}
}
}
description
width
}
images_extra {
source {
childImageSharp {
fluid(maxWidth: >>>frontmatter images extra width<<<, quality: 90) {
...GatsbyImageSharpFluid_withWebp
}
}
}
description
width
}
date
title
}
}
}
`