I am trying to add a field to all documents in the database, but I am not sure how to do that. Here is my database
const db = client.schema
How would I update all documents and add a field called tiks (number) in it?
I am trying to add a field to all documents in the database, but I am not sure how to do that. Here is my database
const db = client.schema
How would I update all documents and add a field called tiks (number) in it?
db.yourCollection.update(
{},
{ $set: {"newField": 1} },
false,
true
)
Parameters