Fixed build issue with optional node value

This commit is contained in:
Corbin Crutchley
2020-02-13 23:04:38 -08:00
parent 3b91377234
commit 8e02c69d32

View File

@@ -0,0 +1,9 @@
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
const typeDefs = `
type MarkdownRemarkFields implements Node {
inlineCount: Int
}
`;
createTypes(typeDefs);
};