我正在使用@gridsome/source-filesystem
这个配置:
{
use: '@gridsome/source-filesystem',
options: {
typeName: 'Post',
path: 'content/posts/**/*.md',
refs: {
tags: {
typeName: 'Tag',
create: true
},
author: {
typeName: 'Author',
create: true
}
}
},
}
现在我只想添加description
一个标签,所以我在以下位置创建了一个新文档content/posts/my-tag.md
:
---
title: Tag-Title
description:tag description
---
如何将此文档连接到allTags
集合?
或任何其他方式(例如,没有@gridsome/source-filesystem
for Tags
)添加description
到存在node
于collection
?