Match documents where field is greater or equal to value

https://docs.mongodb.com/manual/reference/operator/query/gte/#op._S_gte

{field: {$gte: value} }

Property definitions

mongodb $ MongoMatch :: gte
	# Match documents where `field` is greater or equal to `value`
	#
	# https://docs.mongodb.com/manual/reference/operator/query/gte/#op._S_gte
	#
	# ~~~json
	# {field: {$gte: value} }
	# ~~~
	fun gte(field: String, value: nullable Serializable): MongoMatch do
		op("gte", field, value)
		return self
	end
lib/mongodb/queries.nit:131,2--141,4