~ Sources

This note collects all notes where the collection property says Series.

Series sorted by Ratings & Year Experienced

Series sorted by Rating, with Covers & YearXP.

TABLE WITHOUT ID
	years as Years,
	"![|60](" + image + ")" as Poster,
	file.link as Title,
	rating as Rating,
	yearXP as YearXP,
	yearXPL as YearXPL
WHERE
	contains(collection,this.file.link) and
	!contains(file.name, "Template")
SORT rating desc, year asc

Series sorted by Ratings, with People and Genres

This “works in progress” but they should give you some ideas for your own series groups and series shelves.

TABLE WITHOUT ID
	years as Years,
	"![|60](" + image + ")" as Poster,
	file.link as Title,
	rating as Rating,
	join(list(writer, actors)) as People,
	join(list(showGenre)) as Genre
WHERE
	contains(collection,this.file.link) and
	!contains(file.name, "Template")
SORT rating desc, year asc

Back to Sources