Hey everyone, when making a graph query, some of the document data is present, like the id, and an assortment of user data (that gets defined), but we can't seem to grab the first or last_publication_date.
this is what we're sending to the graphQuery: option. Is it possible to grab last_publication_date?
const postQuery = `
... on post {
title
subtitle
lead
header_image
article_published_at
}`
const blogGraphQuery = `{
blog_index {
intro_title
intro_summary
featured_post {
${postQuery}
}
top_posts {
post {
${postQuery}
}
}
body {
... on category_preview {
non-repeat {
category_title
more_link_text
more_link_hover_text
}
repeat {
size
highlighted_post {
${postQuery}
}
}
}
}
}
}`