I save for instance -6 and when I request the number I get -4294967302
The number will be showed in the payload as:
I use the following function to combine the low/high to get that big number which I did not expect:
function highLow(value) {
if ( value.high && value.low ) {
var result = value.high * 4294967296 + value.low
} else {
result = value
}
return result
}