Skip to content

Instantly share code, notes, and snippets.

@lily-mara
Created October 17, 2022 22:42
Show Gist options
  • Save lily-mara/815354cdfb0aa8d4d72120979f5a832a to your computer and use it in GitHub Desktop.
Save lily-mara/815354cdfb0aa8d4d72120979f5a832a to your computer and use it in GitHub Desktop.
Obsidian dataview created/updated view

Created

LIST where file.ctime >= date(this.file.day) AND file.ctime < (date(this.file.day) + dur(1 day))

Updated

LIST where 
	file.mtime >= date(this.file.day) 
	AND
	file.mtime < (date(this.file.day) + dur(1 day)) 
	AND !(
		file.ctime >= date(this.file.day) 
		AND
		file.ctime < (date(this.file.day) + dur(1 day))
	)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment