I want to know the temporal document ingestion date. Is there any function to achieve this?
Asked
Active
Viewed 21 times
1 Answers
0
No, there isn't a function available to achieve that directly.
You could enable the maintain last-modified on the database.
maintain last modified Creates and updates the last-modified property each time a document is created or updated. The default is
false
.
However, it is not enabled by default and it would not be a reliable insert/ingest dateTime value, as any change to the doc would bump that dateTime value.
If you want to track the document insert dateTime, it may be best to add that information to the document, add it to the metadata inserted with the document, or a document-property.

Mads Hansen
- 63,927
- 12
- 112
- 147