Just trying to filter on a field from a foreign table. This doesn't seem to work ``` def resolve_articles(self, args, context, info): query = Article.get_query(context) authorName = args.get('authorName') return query.join(Author).filter(Author.name == authorName) ```