https://github.com/jayvirrathi/mern-graphql-docker
Mern Graphql Docker Example
https://github.com/jayvirrathi/mern-graphql-docker
docker docker-compose mysql nestjs nginx nodejs reactjs typeorm
Last synced: 3 months ago
JSON representation
Mern Graphql Docker Example
- Host: GitHub
- URL: https://github.com/jayvirrathi/mern-graphql-docker
- Owner: Jayvirrathi
- Created: 2021-06-05T16:27:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-05T16:30:12.000Z (about 5 years ago)
- Last Synced: 2025-02-27T16:53:04.937Z (over 1 year ago)
- Topics: docker, docker-compose, mysql, nestjs, nginx, nodejs, reactjs, typeorm
- Language: TypeScript
- Homepage:
- Size: 2.97 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Full Web App React Nestjs Nodejs w/ GraphQL Tailwind and Docker | Full MERN STACK (Graphql)
## Prerequisites
- Docker
**Request:**
```gql
mutation {
addNewCar(
newCarData: {
name: "tesla"
dailyPrice: 50
monthlyPrice: 2000
mileage: "50"
gas: "Yes"
gearType: "Automatic"
thumbnailUrl: ""
}
) {
name
}
}
query GetCars {
cars {
id
name
mileage
gearType
gas
thumbnailUrl
dailyPrice
monthlyPrice
__typename
}
}
```