wundergraph.andert.me/README.md

49 lines
1.0 KiB
Markdown
Raw Normal View History

2022-10-28 12:42:05 +00:00
# Simple starter for WunderGraph Cloud
2022-11-02 17:49:31 +00:00
A simple starter that consumes the [GraphQL Weather API](https://graphql-weather-api.herokuapp.com/).
2022-10-28 12:42:05 +00:00
### Getting started locally
```shell
npm install && npm start
```
2022-11-02 17:49:31 +00:00
Get the weather for Berlin.
2022-10-28 12:42:05 +00:00
```shell
2022-11-02 17:49:31 +00:00
curl -X GET http://localhost:9991/app/main/operations/Weather?city=Berlin
2022-10-28 12:42:05 +00:00
```
---
### Deploy to WunderGraph Cloud
1. Fork this repo
2. Sign in to [WunderGraph Cloud](https://cloud.wundergraph.com)
3. Create a new project
4. Import the forked repo
5. Deploy the project
2022-11-02 17:49:31 +00:00
Try it out (replace `YOUR_PROJECT_ID` with your project id):
```shell
curl -X GET https://{YOUR_PROJECT_NAME}.wundergraph.dev/app/main/operations/Weather?city=Berlin
```
### Make changes
1. Make changes to the `main` branch, e.g. change the query in `.wundergraph/operations/Weather.graphql`
2. Commit and push the changes
See your changes live in less than 20 seconds.
```shell
curl -X GET https://{YOUR_PROJECT_NAME}.wundergraph.dev/app/main/operations/Weather?city=Berlin
```
2022-10-28 12:42:05 +00:00
---
### Learn More
Read the [Docs](https://wundergraph.com/docs).