From 60d7828f4ce99b63fe736d5cd210b35b9413d173 Mon Sep 17 00:00:00 2001 From: Phil Tietjen Date: Wed, 15 Jan 2020 16:41:09 -0500 Subject: [PATCH] docs(gatsby-theme-blog-core): include Blog Post Fields Closes #20631 --- packages/gatsby-theme-blog-core/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages/gatsby-theme-blog-core/README.md b/packages/gatsby-theme-blog-core/README.md index 34a2ffd66096b..aebcd0cbd0535 100644 --- a/packages/gatsby-theme-blog-core/README.md +++ b/packages/gatsby-theme-blog-core/README.md @@ -81,3 +81,18 @@ module.exports = { }, } ``` + +### Blog Post Fields + +The following are the defined blog post fields based on the node interface in the schema + +| Field | Type | +| -------- | -------- | +| id | String | +| title | String | +| body | String | +| slug | String | +| date | Date | +| tags | String[] | +| keywords | String[] | +| excerpt | String |