Hi there I am following the tutorial and I am getting stuck with the following graphql query. Have I done done something wrong?
query ($id: String) {
strapiPost(id: {eq: $id}) {
author {
avatar
name
}
category {
name
slug
}
content {
data {
childMarkdownRemark {
html
}
}
}
cover
date(formatString: "MMMM D, YYYY")
description
slug
title
}
}
"Cannot query field \"data\" on type \"STRAPI_POSTContent\".",