- Express
- Express GraphQL
- GraphQL
- TypeORM
- TypeScript
- Mysql
- Docker
docker-compose up
http://localhost:3000/graphiql
Save Author
mutation {
saveAuthor(firstName:"Mateus", lastName: "Constanzo") {
id,
name,
firstName,
lastName,
}
}
Get all Author
{
authors {
id,
name,
firstName,
# lastName
}
}