Returns the average value of the numeric values

https://docs.mongodb.com/manual/reference/operator/aggregation/avg/

{ $avg: <expression> }

$avg ignores non-numeric values.

Property definitions

mongodb $ MongoGroup :: avg
	# Returns the average value of the numeric values
	#
	# https://docs.mongodb.com/manual/reference/operator/aggregation/avg/
	#
	# ~~~json
	# { $avg: <expression> }
	# ~~~
	#
	# `$avg` ignores non-numeric values.
	fun avg(field: String, expression: Serializable): MongoGroup do
		return acc("avg", field, expression)
	end
lib/mongodb/queries.nit:563,2--574,4