This note collects all notes where the in property says Movies.

My Top Movie Shelf

Multi

5.7+

TABLE WITHOUT ID
	file.link as Movie,
	"![|100](" + image + ")" as Poster,
	rating as Rating
WHERE
	contains(in,this.file.link) and
	rating >= 5.7 and
	!contains(file.name, "Template")
SORT rating desc, year asc

5.4 - 5.6

TABLE WITHOUT ID
	file.link as Movie,
	"![|75](" + image + ")" as Poster,
	rating as Rating
WHERE
	contains(in,this.file.link) and
	rating < 5.7 and
	rating > 5.3 and
	!contains(file.name, "Template")
SORT rating desc, year asc

5.1 - 5.3

TABLE WITHOUT ID
	file.link as Movie,
	"![|50](" + image + ")" as Poster,
	rating as Rating
WHERE
	contains(in,this.file.link) and
	rating < 5.4 and
	rating > 5 and
	!contains(file.name, "Template")
SORT rating desc, year asc

5's

TABLE WITHOUT ID
	file.link as Movie,
	"![|40](" + image + ")" as Poster,
	rating as Rating
WHERE
	contains(in,this.file.link) and
	rating = 5 and
	!contains(file.name, "Template")
SORT rating desc, year asc

Movies sorted by Ratings

Extra

These are “works in progress” but they should give you some ideas for your own movie groups and movie shelves.

Multi

# MAX Testosterone!

TABLE WITHOUT ID
	year as Year,
	"![|60](" + image + ")" as Poster,
	file.link as Title,
	rating as Rating,
	join(list(director, actors)) as People
WHERE
	contains(showGroup,"max testosterone") 
SORT rating desc, year desc

Adaptations Shows sorted by showGroup of adaptation

TABLE WITHOUT ID
	year as Year,
	"![|60](" + image + ")" as Poster,
	file.link as Title,
	rating as Rating,
	join(list(director, actors)) as People
WHERE
	contains(showGroup,"adaptation") 
SORT rating desc, year desc