An absolutely amazing plugin that allows you to create custom views to list your notes or other data. I personally use this on every parent or high level note to view all notes below it.
You can find it by searching for “Dataview” in the Obsidian Third-party plugin browser.
I’ll inlcude my default dataview query below:
TABLE WITHOUT ID
title AS "Title",
file.name AS "File Name",
desc AS "Description"
FROM -"Templates"
WHERE startswith(file.name, "FileName.")
SORT file.name ASC