Results 1 issues of Col Wilson

Would it not be better to let this work: ``` books = Book.query.filter(Book.author == author).first() ``` rather than: ``` books = Book.query.filter(Book.author.mongo_id == author.mongo_id).first() ```