I was working with Hashnode graphql API to build HashNode Analytics Site like Twitter Analytics. I can see an issue as the following query return the wrong results of a number of posts. It always returns null as numOfPosts. Please have a look Sandeep Panda
Query
{
user(username: "deepak2431") {
numPosts
}
}
Result
{
"data": {
"user": {
"numPosts": null
}
}
}