Optional Lesson
This lesson is optional and will not count towards your achievement.
To view the completed code, check out the 09-genre-list
branch.
If you click on the Genres link in the main navigation, you will be taken to a list of Genres.
This list is populated by the API route at http://localhost:3000/api/genres, with the list being produced by the all()
method within the GenreService
.
async all() {
// TODO: Open a new session
// TODO: Get a list of Genres from the database
// TODO: Close the session
return genres
}
In this challenge, you will modify the method to run the following Cypher statement in a read transaction:
MATCH (g:Genre)
WHERE g.name <> '(no genres listed)'
CALL {
WITH g
MATCH (g)<-[:IN_GENRE]-(m:Movie)
WHERE m.imdbRating IS NOT NULL AND m.poster IS NOT NULL
RETURN m.poster AS poster
ORDER BY m.imdbRating DESC LIMIT 1
}
RETURN g {
.*,
movies: count { (g)<-[:IN_GENRE]-(:Movie) },
poster: poster
}
ORDER BY g.name ASC
Your Task
-
Modify the
all()
method on theGenreService
to query Neo4j and return a list of properties ordered by genre name. -
Each genre should have a name, the number of movies listed in that genre (
movies
), and a poster image (from the most popular movie in that genre). -
Remember to close the session and use the
toNativeTypes()
function within amap()
function onres.records
to convert the values to native JavaScript types.
src/services/genre.service.js
→Working Solution
Click here to view the completed all()
method.
async all() {
// TODO: Open a new session
// TODO: Get a list of Genres from the database
// TODO: Close the session
return genres
}
Testing
To test that this functionality has been correctly implemented, run the following code in a new terminal session:
npm run test 09
The test file is located at test/challenges/09-genre-list.spec.js
.
Are you stuck? Click here for help
If you get stuck, you can see a working solution by checking out the 09-genre-list
branch by running:
git checkout 09-genre-list
You may have to commit or stash your changes before checking out this branch. You can also click here to expand the Support pane.
Which genre has the highest movie count?
After the test has succeeded, the test suite will log the name of the genre with the greatest number of movies.
Enter the name of the genre below and click Check Answer.
-
✓ Drama
Hint
You can also find the answer by running the following Cypher statement:
MATCH (g:Genre)
RETURN g.name ORDER BY count{ (g)<-[:IN_GENRE]-() } DESC LIMIT 1
Copy the answer without any quotes or whitespace.
Lesson Summary
In this Challenge, you updated the GenreService
to retrieve a list of genres from the database.
In the next Challenge, you will update the GenreService
to query Neo4j to find the details of an individual genre.