The document

Jeder Datensatz kann mit einem Klick auf das entsprechende „Bearbeiten“-Icon einzeln editiert werden. Die Bearbeitung des Datensatzes erfolgt im Text-Modus. Für das Speichern gibt es die Optionen via den $set Operator zu Speichern. Diese Option kann global in den Anwendungseinstellungen festgelegt werden. Man kann sie aber bei jedem Speicher-Vorgang überschreiben. Die Optionen sind hier näher beschrieben: Einstellungen

Each document can be edited individually by clicking on the appropriate "Edit" icon. The editing of the document takes occurs in text mode. You can endable the $set operator for saving changes without overriding the whole document. These options can be set globally in the application settings. The options are described in more detail here: Settings



Special formattings

ObjectId

If the data type of a field is a MongoDB ObjectId, it is necessary to format it to the following syntax:

// single quotes _id: ObjectId('53db515f01a0d82015000001') // double quotes _id: ObjectId("53db515f01a0d82015000001")

Date values

Date values are similar to the specified ObjectIds in a specific format:

 

// 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')

Double or single quotation marks are allowed here.

JavaScript works in milliseconds, UNIX timestamps must be multiplied by 1000 to be correctly converted or displayed.