1. Node
2. Express
3. MongoDb
4. Mongoose
5. React
6. GraphQL
6. Apollo
How we get into the graph the entry points
1. When making a query you must use "", not ''
2. Query example of relationship data
{
book(id:2){
name
genre
author{
name
age
}
}
}
- Create
- Update
- Delete
- ex: mutation {addAuthor(name:"some name", age:26){name age}}