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 |