Simple Aggregation
You can fetch aggregations on nodes using an aggregation query. Currently the available aggregation function is count
.
In the following examples, we have a table called Posts
, which contains fields and relations like title
, body
, author
.
Request
query {
author(name: "Huxley") {
name
posts {
count
items {
title
}
}
}
}
Result
{
"data": {
"author": {
"name": "Huxley",
"posts": {
"count": 2,
"items": [
{ "title": "10 things you never knew about Possums" },
{ "title": "3 things you never wanted to know about Possums" }
]
}
}
}
}