I’m wondering if there’s any way to modify the creation time of notes indexed by SilverBullet, or perhaps get it to read the values from the filesystem rather than using the time at index?
I’m a new SilverBullet user and have a bunch of old notes I’d like to import with accurate creation times. I’ve tried modifying the filesystem creation times but it doesn’t seem like SilverBullet reads these when indexing.
Thanks. Being a new user and also new to Lua, I wasn’t sure if I was just missing something obvious. I’m running version 2.3.0-0-g21ddcb46 on XFS on Unraid.
For context, I’m just trying to render a table with links to recently created notes & their creation dates:
${query[[
from p = index.tag "page"
order by p.created desc
select {
name = "[[" .. p.name .. "]]",
created = p.created
)
}
limit 20
]]}
This seems to just give me the date/time at time of index for each page.