If you used Export you'll need to add a "
created" property to each collection by editing the export file in a text editor.
You can get a baseline value for the current time by executing
(new Date()).toJSON() in the
console, then copy/paste that value to a "
created" property on each collection (from top to bottom), decrementing the second or minute on each. Collections will display by
created time descending (most recent at top) once
restored.
So for example:
"collections": [
{
"created": "2025-10-16T04:14:19.395Z",
"title": "test collection 1",
.. etc
You can try tasking AI to automate this for you. Others have reported favorable results with this approach.
Finally, don't forget to use Backup/Restore as previously recommended to avoid having to jump through these hoops going forward.
Hans