-
Notifications
You must be signed in to change notification settings - Fork 1
Home
JP Barbosa edited this page Apr 15, 2023
·
4 revisions
- NX Setup
- Graph Database
- API Structure
- Graph Structure
- Graph Testing
- Graph Mutations
- API CRUD
- React Frontend
- Card And Search
- Frontend Components
- Frontend Mutations
- People Types
- People Graph
- People API
- People Frontend Fetching
- People Frontend Mutations
- Movies People Graph
- Movies People Frontend
- Visualization Graph And API
- Visualization Frontend
- Shortest Path Graph And API
- Shortest Path Frontend
- End-To-End Tests
- Readme
├── dist
├── node_modules
├── packages
│ ├── api (Express Backend)
│ │ ├── src
│ │ │ ├── config
│ │ │ ├── controllers
│ │ │ ├── middlewares
│ │ │ ├── routes
│ │ │ └── main.ts
│ ├── api-e2e
│ ├── graph (Neo4j Graph)
│ │ ├── src
│ │ │ ├── movies
│ │ │ ├── people
│ │ │ ├── shortestPath
│ │ │ ├── utils
│ │ │ ├── visualization
│ │ │ └── index.ts
│ ├── shared (Common Files)
│ │ ├── src
│ │ │ ├── lib
│ │ │ ├── sampleData
│ │ │ ├── types
│ │ │ ├── utils
│ │ │ └── index.ts
│ ├── web (React Frontend)
│ │ ├── src
│ │ │ ├── api
│ │ │ ├── app
│ │ │ ├── components
│ │ │ ├── hooks
│ │ │ ├── pages
│ │ │ ├── styles
│ │ │ ├── utils
│ │ │ └── main.tsx
│ └── web-e2e
├── tools
├── .gitignore
├── package.json
└── README.md