This note collects all notes where their in property has Quotes.

# Quotes

TABLE WITHOUT ID
	file.link as Quote,
	join(list(by)) as By,
	rank as Rank
WHERE
	contains(in,this.file.link) and
	!contains(file.name, "Template")
SORT rank desc, by asc

If a quote isn’t in its own dedicated note, you can instead prefix it with quote:: to show in the results below:

# Inline Quotes

TABLE WITHOUT ID
	join(quote, "
	") as Quote,
	file.link as From
WHERE
	quote and
	!contains(file.name, "Template")
SORT rank desc, by asc