mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-08 21:07:48 +00:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
exports.createSchemaCustomization = ({ actions }) => {
|
|
const { createTypes } = actions;
|
|
const typeDefs = `
|
|
type MarkdownRemarkFields implements Node {
|
|
inlineCount: Int
|
|
}
|
|
`;
|
|
createTypes(typeDefs);
|
|
};
|