Movie Data for "Chatbot using TypeScript" Course

I'm following along with a local build of the course, which also uses a locally hosted version of the database. There is no movie data in my database, so running the following returns a count of 0.

LOAD CSV WITH HEADERS FROM 'https://data.neo4j.com/llm-fundamentals/openai-embeddings.csv' AS row MATCH (m:Movie {movieId: row.movieId}) CALL db.create.setNodeVectorProperty(m, 'embedding', apoc.convert.fromJsonList(row.embedding)) RETURN count(*);

How can I get access to the movie database? I found a sample movie database by running :guide movie-graph, but this database appears to but much smaller and not compatible with the embeddings.

Is this data available for download to a locally running database?

Hi,

The course uses the recommendations dataset. There is a database dump available in the gtihub.com/neo4j-graph-examples/recommendations repo - recommendations/data/recommendations-50.dump at main · neo4j-graph-examples/recommendations · GitHub

Martin

1 Like

Thank you! This is exactly what I needed.