Added support for multiplicity in value constraints of "query_parameter"Calls like e.g. set id [:query_parameter some_id:int32]are actually equivalent to set id [:query_parameter some_id:int32 ""]and accept therefore as result also an empty value. By being able tospecify an explicit multiplicity, we can force non-empty values: set id [:query_parameter some_id:int32,1..1]This means effectively that the default multiplicity is "0..1".
Show less