0

我的降价有一些额外的注释,看起来像这样:

---
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
        }
      }
    }
  }
}
4

1 回答 1

1

好吧,markdown 文档的头部通常被称为frontmatter并且会自动为您转换,因此只需将该description字段添加到结构内的 graphql 查询中,frontmatter { ... }并像使用该title字段一样使用它。

于 2018-10-12T10:04:20.970 回答