This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Description
We'll need this for some upcoming feature work.
Basically, three ways of doing this:
- expose dateAdded/lastModified timestamps in our
BookmarkNode type (these are already available to us over FFI); to get recent, fetch the entire tree and perform an in-memory filter.
- add a places API specifically for this purpose (which will perform this work entirely in SQL).
- keep track of recently bookmarked items in some auxiliary storage
(1) is likely the slowest, but quick to do. (2) will be certainly faster, but the most work. However, it's not that much work, we should be able to easily add this additional API to A-S.
(3) seems wrong to me entirely, given that (1) and (2) exist.
┆Issue is synchronized with this Jira Task