Home / Companies / Neo4j / Blog / Post Details
Content Deep Dive

Angular With @neo4j/graphql and the Nest.js Backend

Blog post from Neo4j

Post Details
Company
Date Published
Author
Konrad KaliciƄski
Word Count
1,415
Language
English
Hacker News Points
-
Summary

Angular application is built on top of the Nest.js backend framework with @neo4j/graphql integration, leveraging a NX monorepo for organization. The setup involves cloning a repository, installing dependencies, and setting up a .env file. A movie database is populated using Neo4j's provided dataset, and three pages are created: a list of all available movies, a movie details page, and a person details page. GraphQL queries are created to fetch data for these pages, including the `GET_MOVIES`, `GET_PERSON_DETAILS`, and `getPersonByName` methods. These queries utilize Neo4j's nodes and relationships to retrieve data from the database. The application demonstrates how quickly one can start building an entire app with @neo4j/graphql on the backend.