Each document can be edited individually by clicking on the appropriate "Edit" icon. The processing of the document occurs in text mode. For saving, there are several options that are displayed by clicking on the link "Save options". These options can be set globally in the application settings, but you can override them in every saving-operation. The options are described in more detail here: Einstellungen
Spezielle Formatierungen
ObjectId
Handelt es sich beim Datentyp eines Feldes um eine MongoDB ObjectId, ist es notwendig, diese nach folgender Syntax zu formatieren:
// einfache Anführungszeichen _id: ObjectId('53db515f01a0d82015000001') // doppelte Anführungszeichen _id: ObjectId("53db515f01a0d82015000001")
Datumswerte
Datumswerte werden ähnlich den ObjectIds in einer speziellen Formatierung angegeben:
// UTC Format start: ISODate('2013-01-30T00:00:00.000Z') // date string start: ISODate('dec 11, 1989') start: ISODate('1989, 12, 11') start: ISODate('1989, 12, 11, 9, 12, 34') // timestamp start: ISODate('629379488000')
Hier sind ebenfalls doppelte oder einfache Anführungszeichen erlaubt.
JavaScript arbeitet in Millisekunden, UNIX timestamps müssen mit 1000 multipliziert werden, um korrekt umgerechnet oder angezeigt werden zu können.