Match documents where field is greater than value

https://docs.mongodb.com/manual/reference/operator/query/gt/#op._S_gt

{field: {$gt: value} }

Property definitions

mongodb $ MongoMatch :: gt
	# Match documents where `field` is greater than `value`
	#
	# https://docs.mongodb.com/manual/reference/operator/query/gt/#op._S_gt
	#
	# ~~~json
	# {field: {$gt: value} }
	# ~~~
	fun gt(field: String, value: nullable Serializable): MongoMatch do
		op("gt", field, value)
		return self
	end
lib/mongodb/queries.nit:119,2--129,4