How I use Obsidian Dataview
Obsidian Guides
Guide to develop and execute modular JavaScript in Obsidian - Share & showcase - Obsidian Forum
Querying Tasks from Yesterday's Daily Note in Obsidian
TABLE WITHOUT ID file.link as "Topic", join(file.etags) as "Tags" FLATTEN list(filter(file.etags, (t) => econtains(this.file.etags, t))) as matchingtags WHERE length(matchingtags) > 0 AND file.name != this.file.name SORT length(matchingtags) desc, file.mtime desc LIMIT 5
Creating a Related Items Section
Dataview Notes - Breadcrumbs - Obsidian Publish
app.plugins.plugins.dataview.api.pages(
"<query>",
app.workspace.getActiveFile()?.path ?? ""
);
xDovos/Dataview-Deep-Dive at 06e818ad0600697f05797c47f785c41c6955234b
Dataview in Obsidian: A Beginner's Guide - Obsidian Rocks
```dataview
list from [[]] and !outgoing([[]])
```
This will create a list of all files that link to the current file but do not already have a link in the file. This is a great way to avoid losing files in your Zettelkasten.
Migrating Notes from Craft to Obsidian
How I Use Embedded Queries In Obsidian To Simplify My Note Management
s-blu/obsidian_dataview_example_vault: A example vault to collect and showcase various dataview queries. Created on behalf of AB1908
Practically Paperless with Obsidian
Dataview dateformat function - Help - Obsidian Forum
Meta Bind Docs
Path-based Commands in Obsidian
improving dataview query using regexmatch
LIST WHERE file.cday = date("<% tp.date.now("YYYY-MM-DD") %>") AND regexmatch("\d{4}-\d{2}-\d{2}", file.name) = false SORT file.name ASC
Creating a tag index table with Dataview?
```dataview
TABLE WITHOUT ID (tag + "(" + length(rows.file.link) + ")") AS Tags, (rows.file.folder) AS Folder, (rows.file.link) AS Files
FROM ""
WHERE file.tags
FLATTEN file.tags AS tag
GROUP BY tag
SORT length(rows.file.link) DESC
```
Burning out Dataviews in Obsidian with Templater
How to get started with Obsidian Dataview and Dataviewjs
11 Useful Dataview Snippets I use in My Obsidian Vault
View recently modified files```dataview List From "" Where file.mtime >= date(today) - dur(1 day) Limit 5```
Creating Obsidian Goals - Obsidian Rocks
Adding the right properties automatically
<%-* let filetype = await tp.system.suggester(["Auteur", "Contact", "Personnalité"], ["Auteur", "Contact", "Personnalité"], false, "Which template do you want to use?") -%>
<%-* if (filetype === "Auteur") { -%>
<%-tp.file.include("[[Templatename1]]")-%>
<%-* } else if (filetype === "Contact") { -%>
<%-tp.file.include("[[Templatename2]]")-%>
<%-* } else if (filetype === "Personnalité") { -%>
<%-tp.file.include("[[Templatename3]]")-%>
<%-* } else { -%>
<%-tp.file.include("[[DefaultTemplateName]]")-%>
<%-* } -%>