Open
Description
Does the plugin generate the "aggregate" query
I have a query to fetch the "project" list with the pagination(offset and limit) and also want to get the total number of the list by (projects_aggregate)
query ExploreProjects(
$name: String
$offset: Int
$limit: Int
) {
projects_aggregate(
where: {
...
}
) {
aggregate {
count
}
}
projects(
limit: $limit
offset: $offset
order_by: { updated_at: desc }
where: {
...
}
) {
...Project
}
}
Metadata
Metadata
Assignees
Labels
No labels