我的降价促销有一些额外的说明,看起来像这样:
---
path: "/"
date: "2018-10-12"
title: "xxxx"
description: "desccc"
---
some of the text
如何获取说明?
{
allMarkdownRemark(
sort: { order: DESC, fields: [frontmatter___date] }
limit: 1000
) {
edges {
node {
frontmatter {
path
title
date
}
}
}
}
}
答案 0 :(得分:1)
嗯,降价文档的头部通常被称为frontmatter
,并且会自动为您转换,因此只需将description
字段添加到frontmatter { ... }
结构内的graphql查询中即可并像使用title
字段那样使用它。