We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 635cc6c commit 85b53ddCopy full SHA for 85b53dd
1 file changed
gatsby-node.js
@@ -459,6 +459,7 @@ exports.createSchemaCustomization = ({ actions }) => {
459
}
460
type SitePage implements Node {
461
fields: SitePageFields
462
+ context: SitePageContext
463
464
type SitePageFields {
465
slug: String
@@ -467,6 +468,9 @@ exports.createSchemaCustomization = ({ actions }) => {
467
468
level: Int
469
directory: Boolean
470
471
+ type SitePageContext {
472
+ description: String
473
+ }
474
`;
475
createTypes(typeDefs);
476
};
0 commit comments