Replies: 3 comments 9 replies
-
Dataview is an in-memory metadata index, so it doesn't include file contents directly since that would be equivalent to storing your entire vault in memory which would be a lot of overhead for medium-to-large vaults - if you had 400,000 notes averaging 25 lines, that could be anywhere from 800MB-2GB of data that dataview would be holding onto, which is pretty significant. One thing I am adding to allow this use case is |
Beta Was this translation helpful? Give feedback.
-
is this feature |
Beta Was this translation helpful? Give feedback.
-
related to #279 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
By using native Obsidian queries, one can search for keywords within notes, under sections/headers and within lines. It would be great if Dataview can support something similar. For instance, in the
where
part of the query one can use something like the following to search for such keywords, just like what one can do for tasks:.where(file => file.text.includes("Keyword"));
.where(section => section.text.includes("Keyword"));
.where(line => line.text.includes("Keyword"));
This way, one can also query notes in smaller units, i.e. sections and lines.
Beta Was this translation helpful? Give feedback.
All reactions