You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2023. It is now read-only.
These are all valid JSON values, but can't all be queried at present. Right now, true and false are being cast to their primitive types when supplied as string queries (and null is not):
truefalsenull"true""false""null"These are all valid JSON values, but can't all be queried at present. Right now,
trueandfalseare being cast to their primitive types when supplied as string queries (andnullis not):jsonbox/src/helper.js
Lines 84 to 85 in 6781bd2
I think it might be better to treat these non-string primitive values the way that numbers are being treated, but as special cases:
jsonbox/src/helper.js
Line 71 in 6781bd2
I haven't worked with mongo in a long time, so I'm not sure about the exact syntax, but something like
and then you could just remove the code from lines 84–85 above.