strapi 和 graphql:如何获取项目总数?
strapi & graphql : how to get total count of items?
我正在使用 strapi 和 graphQL ,
通过这个查询我可以获得帖子
query {
posts{
id,
title
}
}
我想得到 posts 和 totalCount together ,理想的结果是这样的
{
"data": {
"totalCount" : "3",
"posts": [
{
"id": "1",
"title": "first post "
},
{
"id": "4",
"title": "post two"
},
{
"id": "5",
"title": "post 3"
}
]
}
}
我已经阅读了 文档,我可以查询 总计数 但这对我来说还不够!
所以,我怎样才能得到 posts 和 totalCounts 在一起?
我现在刚好站在你的立场上,我找到的解决方案是:
query POSTS {
postsConnection {
aggregate {
count
}
}
posts{
id
title
}
}
我正在使用 strapi 和 graphQL ,
通过这个查询我可以获得帖子
query {
posts{
id,
title
}
}
我想得到 posts 和 totalCount together ,理想的结果是这样的
{
"data": {
"totalCount" : "3",
"posts": [
{
"id": "1",
"title": "first post "
},
{
"id": "4",
"title": "post two"
},
{
"id": "5",
"title": "post 3"
}
]
}
}
我已经阅读了 文档,我可以查询 总计数 但这对我来说还不够! 所以,我怎样才能得到 posts 和 totalCounts 在一起?
我现在刚好站在你的立场上,我找到的解决方案是:
query POSTS {
postsConnection {
aggregate {
count
}
}
posts{
id
title
}
}