export const query = graphql`
query {
posts: allGhostPost (
sort: { order: DESC, fields: [published_at] }
filter: { slug: { ne: "data-schema" } }
) {
edges {
node {
title,
slug,
feature_image,
id
},
}
}
}