fix graphql queries

This commit is contained in:
neri 2020-01-22 13:33:25 +01:00
parent 62a6f5bf48
commit 42a2077e3c
3 changed files with 18 additions and 8 deletions

View File

@ -9,7 +9,7 @@ Um die Dependencies zu installieren führe einmal im Projektverzeichnis `yarn` a
Um die Webseite lokal zu testen führe danach `yarn develop` aus.
Es startet dann ein Entwicklungsserver auf `localhost:8000`.
Dann sollte auch Hot-Reloading funktionieren (tut es aber aktuell u.U. nicht, mecker neri an).
Dann sollte auch Hot-Reloading funktionieren.
Für einen Produktivbuild führe `yarn build` aus.
Die fertig gebauten Dateien landen dann im Ordner `public/`.

View File

@ -13,9 +13,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
frontmatter {
path
title
edit {
relativePath
}
edit
}
}
}
@ -37,3 +35,17 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
})
})
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = `
type Mdx implements Node {
frontmatter: Frontmatter
}
type Frontmatter {
edit: String
}
`
createTypes(typeDefs)
}

View File

@ -46,9 +46,7 @@ export const pageQuery = graphql`
body
frontmatter {
title
edit {
relativePath
}
edit
}
}
}