wundergraph.andert.me/README.md

51 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

# WunderGraph Cloud Starter
2022-10-28 12:42:05 +00:00
2023-04-18 10:46:30 +00:00
[![CI](https://github.com/wundergraph/cloud-starter/actions/workflows/ci.yaml/badge.svg)](https://github.com/wundergraph/cloud-starter/actions/workflows/ci.yaml)
A simple starter that consumes the [GraphQL SpaceX API](https://spacex-api.fly.dev/graphql/)
2022-10-28 12:42:05 +00:00
### Getting started locally
```shell
2023-03-20 20:10:28 +00:00
npm i && npm start
2022-10-28 12:42:05 +00:00
```
2022-12-22 20:58:54 +00:00
Fetch all SpaceX Dragons from your WunderGraph.
2022-10-28 12:42:05 +00:00
```shell
2022-12-02 11:24:48 +00:00
curl -X GET http://localhost:9991/operations/Dragons
2022-10-28 12:42:05 +00:00
```
2023-02-27 12:36:40 +00:00
### Run tests
```shell
npm test
```
2022-12-02 11:24:48 +00:00
### Deploy to WunderGraph Cloud
2022-10-28 12:42:05 +00:00
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
Try it out (replace `YOUR_PROJECT_NAME` with your project name):
2022-11-02 17:49:31 +00:00
```shell
2022-12-02 11:24:48 +00:00
curl -X GET https://{YOUR_PROJECT_NAME}.wundergraph.dev/operations/Dragons
2022-11-02 17:49:31 +00:00
```
### Make changes
2022-12-02 11:24:48 +00:00
1. Make changes to the `main` branch, e.g. change the query in `.wundergraph/operations/Dragons.graphql`
2022-11-02 17:49:31 +00:00
2. Commit and push the changes
See your changes live in less than a minute.
2022-11-02 17:49:31 +00:00
2022-10-28 12:42:05 +00:00
---
2022-12-02 11:24:48 +00:00
2022-10-28 12:42:05 +00:00
### Learn More
Read the [Docs](https://wundergraph.com/docs).