~ Sources

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

Groundhog Day

Shows sorted by the showGroup property of “groundhog day”

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,"groundhog day")
SORT rating desc, year desc

MAX Testosterone!

Shows sorted by showGroup of “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

Back to Movies