I'm trying to craft a GraphQL query to search posts by title and content. However, it seems my query only searches on title.
I'm using the source WordPress Plugin with this query:
query Posts {
allPage: allWordPressPost(regex:".*hello.*") {
edges {
node {
title
path
content
}
}
}
}
Any ideas? Is this even possible with Gridsome / source-wordpress (I know these are pretty immature)?