How can I get rid off ' NumberInt' statements in the results pane?
Solved
I do not want to see:
- "numPts" : NumberInt("1")
I just want to see:
- "numPts" : 1
It is quite painful to filter out "NumberInt(" ")" prints if you just want to use the results and paste as json file.
Currently, it is impossible. We will add an option to show Int32 as plain "numPts" : 1 in the next update.
Please note, if you execute the following mongo shell script,
But you will get a double value, int : 123.0 (double)
To insert an int32 value. You have to write it as:
Currently, it is impossible. We will add an option to show Int32 as plain "numPts" : 1 in the next update.
Please note, if you execute the following mongo shell script,
But you will get a double value, int : 123.0 (double)
To insert an int32 value. You have to write it as:
Resolved in 3.5.7
Turn off the following optionOptions -> Output Panel -> Result JSON View Format -> Show Int32 as NumberInt("xxx")
Resolved in 3.5.7
Turn off the following optionOptions -> Output Panel -> Result JSON View Format -> Show Int32 as NumberInt("xxx")
Replies have been locked on this page!