users_aggregate
fetch aggregated fields from the table: "users"
Arguments
distinct_on
[users_select_column!] - distinct select on columns
limit
Int - limit the nuber of rows returned
offset
Int - skip the first n rows. Use only with order_by
order_by
[users_order_by!] - sort the rows by one or more columns
where
users_bool_exp - filter the rows returned
Request
subscription users_aggregate($distinct_on: [users_select_column!], $limit: Int, $offset: Int, $order_by: [users_order_by!], $where: users_bool_exp) {
users_aggregate(
distinct_on: $distinct_on
limit: $limit
offset: $offset
order_by: $order_by
where: $where
) {
aggregate {
...users_aggregate_fieldsFragment
}
nodes {
...usersFragment
}
}
}