Add counters for common counted data
We can get total member count with:
```
query Query {
identityAggregate(where: {isMember: {_eq: true}}) {
aggregate {
count
}
}
}
```
but as it is a frequently requested value, it would be better to add a counter for it.
This is the same for each member and smith status.
issue