-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gatsby): Support grouping by reserved keywords (#22603)
- Loading branch information
Showing
3 changed files
with
215 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ const nodes = [ | |
}, | ||
frontmatter: { | ||
title: `Markdown File 1`, | ||
tags: [], | ||
date: new Date(Date.UTC(2019, 0, 1)), | ||
authors: [`[email protected]`, `[email protected]`], | ||
reviewer___NODE: `author2`, | ||
|
@@ -55,6 +56,7 @@ const nodes = [ | |
}, | ||
frontmatter: { | ||
title: `Markdown File 2`, | ||
tags: [`constructor`], | ||
published: false, | ||
authors: [`[email protected]`], | ||
reviewer___NODE: null, | ||
|
Oops, something went wrong.