Dataview Notes
Dataview Notes allow you to use the Dataview plugin query engine to add edges to the graph. You can turn a note into a Dataview Note by adding the following to your frontmatter:
---BC-dataview-note-query: "<query>"BC-dataview-note-field: "<field>"---Where <query> is a valid Dataview query, and <field> is one of your edge fields.
Breadcrumbs will ask Dataview for all notes that match the query, and add edges from the current note to those notes using the field you specify. For example, the following query will add child edges from the current note to all notes that contain the tag #tag and are in the folder “Folder”:
---BC-dataview-note-field: "child"BC-dataview-note-query: '"#tag" AND "Folder"'---