strapi 和 graphql:如何获取项目总数?

strapi & graphql : how to get total count of items?

我正在使用 strapigraphQL ,

通过这个查询我可以获得帖子

query {
  
  posts{
    id,
    title
  }
}

我想得到 poststotalCount together ,理想的结果是这样的

{
  "data": {

"totalCount" : "3",
    "posts": [
      {
        "id": "1",
        "title": "first post "
      },
      {
        "id": "4",
        "title": "post two"
      },
      {
        "id": "5",
        "title": "post 3"
      }
    ]
  }
}

我已经阅读了 文档,我可以查询 总计数 但这对我来说还不够! 所以,我怎样才能得到 poststotalCounts 在一起?

我现在刚好站在你的立场上,我找到的解决方案是:

    query POSTS {
      postsConnection {
        aggregate {
          count
        }
      }
      posts{
        id
        title
      }
    }