stellate 1.24.1 → 1.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -7
- package/dist/bin.js +833 -730
- package/dist/index.d.ts +247 -184
- package/dist/rate-limiting.d.ts +6 -6
- package/package.json +13 -13
- package/CHANGELOG.md +0 -225
package/README.md
CHANGED
|
@@ -5,13 +5,14 @@ The CLI you need to work with Stellate from your CLI. See https://docs.stellate.
|
|
|
5
5
|
## Commands
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
login
|
|
9
|
-
init
|
|
10
|
-
pull
|
|
11
|
-
ls
|
|
12
|
-
push
|
|
13
|
-
check
|
|
14
|
-
serve
|
|
8
|
+
login Authenticate the CLI
|
|
9
|
+
init Setup a new Stellate service
|
|
10
|
+
pull Pull the latest gateway config to the local stellate config file
|
|
11
|
+
ls List all apps
|
|
12
|
+
push Push the latest changes from stellate config file
|
|
13
|
+
check Check for breaking changes to your schema (BETA)
|
|
14
|
+
serve Use your local backend with Stellate’s GraphQL Edge Cache (BETA)
|
|
15
|
+
subset Prints the subset of your schema according to the configured schema view (BETA)
|
|
15
16
|
```
|
|
16
17
|
|
|
17
18
|
every one of these can be suffixed with `--help` for additional information.
|