If I would be dealing with a regular database I would write a query:
SELECT average(field1)
FROM A
WHERE user = “user123”
AND field2= “valueabc”
I can create a “view” with filter and group to get the average shown. But when
I use the API to access th...