An open API service indexing awesome lists of open source software.

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

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
}
}
```