Dates in Gatsby GraphQL
May 3, 2020
Date Formatting
code
date(formatString: "YYYY, MMM DD")
Beispiel Query:
code
query BlogQuery {
allFile(
filter: { sourceInstanceName: { in: ["blog", "notes"] } }
sort: { order: DESC, fields: childMdx___frontmatter___date }
) {
nodes {
childMdx {
frontmatter {
title
date(formatString: "YYYY, MMM DD")
}
}
}
}
}
lastmod automatisch?
mtime ist unzuverlaessig, weil es sich beim Clone aendert.
Fazit: lastmod lieber bewusst in Frontmatter pflegen.