We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lastModifiedDate
Currently the lastModifiedDate is only available in each document from the api as:
{ "id":"someId", "parentId":"someParent", "userId":"userId", "title":"some title", "content":"some content", "lastModifiedDate":"2024-11-13T22:05:58.6491204Z", "deleted":false, "isPublic":true }
The lastModifiedDate should be also added in the document tree as:
{ "id":"someId", "documents": [ { "id":"someId", "name":"title", "parent":"root", "pinned":true, "lastModifiedDate":"2024-11-13T22:05:58.6491204Z", // <---- here "children":null }, ... ] }
For this save also the document tree in save-document-handler with the lastModifiedDate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the
lastModifiedDate
is only available in each document from the api as:The
lastModifiedDate
should be also added in the document tree as:For this save also the document tree in save-document-handler with the
lastModifiedDate
The text was updated successfully, but these errors were encountered: