when adding integers (or any number type), values in mongo will be numeric but the cube queries search for strings, ending up with queries like this and no matches.
sum(type.eq(val,'123.0'))
instead of
easiest solution is probably just to make everything a string?
when adding integers (or any number type), values in mongo will be numeric but the cube queries search for strings, ending up with queries like this and no matches.
instead of
easiest solution is probably just to make everything a string?