What I’m trying to do
I am new to obsidian and having a go with some of the functions. I’m trying to set up a movie database and book one too. The code for the table (for both) seems to not be able to “see” the information to pull it across, only the name of the file and only if I use a tag. Clearly I’m doing something relatively simple wrong but can’t figure out what so any help would be much appreciated
For books, this is the template I used to create said information (movie is similar)
title: "{{title}}"
author: "{{author}}"
category: "{{category}}"
publisher: "{{publisher}}"
publishdate: "{{publishdate}}"
pages: "{{totalPage}}"
cover: "{{coverUrl}}"
rating:
date read:
status:
Then to try and create a table from that:
TABLE author as Author, ("") as Cover, pages, category as genre, rating
From "books"
Where contains(status, "complete")
error message: Dataview: No results to show for table query.
