Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calpa/neo4j-movie-backend
Neo4j movie backend
https://github.com/calpa/neo4j-movie-backend
neo4j neo4j-driver
Last synced: 3 days ago
JSON representation
Neo4j movie backend
- Host: GitHub
- URL: https://github.com/calpa/neo4j-movie-backend
- Owner: calpa
- Created: 2022-02-26T16:45:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T20:34:54.000Z (about 2 years ago)
- Last Synced: 2024-11-04T06:02:11.287Z (about 2 months ago)
- Topics: neo4j, neo4j-driver
- Language: JavaScript
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Neo4j movie backend
## How to start this project
1. Copy the neo4j configuration in neo4j website
2. Add .env in root directory```
neo4j_address =
neo4j_username =
neo4j_password =
```3. Run `npm install` to install the dependencies
4. Run `nodemon` to run the project## Endpoints
### Example
- Get All movies: `/movie`
- Query Movie by title: `/movie?title=The Matrix Reloaded`
- Query Movie by title, within released year range: `/movie?title=The Matrix&first_year=2000&last_year=2015`- Get All people involved in the movie: `/movie/The Matrix/people`
## Packages
- Express.js
- dotenv
- neo4j-driver