Session: How to Get Entity Last Modified
When a document is downloaded from the server it contains various metadata information, including the last modified date of the document.
Last modified date is stored within the metadata in session and is available for each entity using the getLastModifiedFor()
method from the advanced
session operations.
Syntax
session.advanced.getLastModifiedFor(instance);
Parameters | ||
---|---|---|
instance | object | Instance of an entity for which the last modified date will be returned. |
Return Value | |
---|---|
Date | Returns the last modified date for an entity. Throws an exception if the instance is not tracked by the session. |
Example
const employee = await session.load("employees/1-A");
const lastModified = session.advanced.getLastModifiedFor(employee);