I try to insert a long/BigInt into my MongoDB Database with the Node.js Mongo Driver.
I've already tried with BigInt, but it doesn't insert the number (expiry) in the document.
let expire = BigInt(parseInt((Date.now() / 1000) + 21600, 10));
let newDoc = {
type: "group.test",
expiry: expire
};
collection.insertOne(newDoc);
// it only inserts the type.
I want it to save as BigInt because we need to get it later with a Java Server.