@@ -40,7 +40,7 @@ curl -sSL https://graphql-hive.com/install.sh | sh
40
40
- [ ` hive config:reset ` ] ( #hive-configreset )
41
41
- [ ` hive config:set KEY VALUE ` ] ( #hive-configset-key-value )
42
42
- [ ` hive dev ` ] ( #hive-dev )
43
- - [ ` hive help [COMMANDS ] ` ] ( #hive-help-commands )
43
+ - [ ` hive help [COMMAND ] ` ] ( #hive-help-command )
44
44
- [ ` hive introspect LOCATION ` ] ( #hive-introspect-location )
45
45
- [ ` hive operations:check FILE ` ] ( #hive-operationscheck-file )
46
46
- [ ` hive schema:check FILE ` ] ( #hive-schemacheck-file )
@@ -71,7 +71,7 @@ DESCRIPTION
71
71
```
72
72
73
73
_ See code:
74
- [ dist/commands/artifact/fetch.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/artifact/fetch.js ) _
74
+ [ dist/commands/artifact/fetch.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/artifact/fetch.js ) _
75
75
76
76
## ` hive config:delete KEY `
77
77
@@ -89,7 +89,7 @@ DESCRIPTION
89
89
```
90
90
91
91
_ See code:
92
- [ dist/commands/config/delete.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/config/delete.js ) _
92
+ [ dist/commands/config/delete.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/config/delete.js ) _
93
93
94
94
## ` hive config:get KEY `
95
95
@@ -107,7 +107,7 @@ DESCRIPTION
107
107
```
108
108
109
109
_ See code:
110
- [ dist/commands/config/get.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/config/get.js ) _
110
+ [ dist/commands/config/get.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/config/get.js ) _
111
111
112
112
## ` hive config:reset `
113
113
@@ -122,7 +122,7 @@ DESCRIPTION
122
122
```
123
123
124
124
_ See code:
125
- [ dist/commands/config/reset.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/config/reset.js ) _
125
+ [ dist/commands/config/reset.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/config/reset.js ) _
126
126
127
127
## ` hive config:set KEY VALUE `
128
128
@@ -141,44 +141,49 @@ DESCRIPTION
141
141
```
142
142
143
143
_ See code:
144
- [ dist/commands/config/set.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/config/set.js ) _
144
+ [ dist/commands/config/set.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/config/set.js ) _
145
145
146
146
## ` hive dev `
147
147
148
- develop and compose Supergraph with service substitution (only available for Federation projects)
148
+ Develop and compose Supergraph with service substitution
149
149
150
150
```
151
151
USAGE
152
- $ hive dev (--url <value> --service <value>) [--registry.endpoint <value>] [--registry.accessToken
153
- <value>] [--schema <value> ] [--watch] [--watchInterval <value>] [--write <value>]
152
+ $ hive dev (--url <value> --service <value>) [--registry.endpoint <value>] [--registry <value>]
153
+ [--registry.accessToken <value>] [--token <value>] [--schema <value> ] [--watch] [--watchInterval <value>] [--write
154
+ <value>]
154
155
155
156
FLAGS
157
+ --registry=<value> registry address
156
158
--registry.accessToken=<value> registry access token
157
159
--registry.endpoint=<value> registry endpoint
158
160
--schema=<filepath>... Service sdl. If not provided, will be introspected from the service
159
161
--service=<string>... (required) Service name
162
+ --token=<value> api token
160
163
--url=<address>... (required) Service url
161
164
--watch Watch mode
162
165
--watchInterval=<value> [default: 1000] Watch interval in milliseconds
163
166
--write=<value> [default: supergraph.graphql] Where to save the supergraph schema file
164
167
165
168
DESCRIPTION
166
- develop and compose Supergraph with service substitution (only available for Federation projects)
169
+ Develop and compose Supergraph with service substitution
170
+ Only available for Federation projects.
171
+ Work in Progress: Please note that this command is still under development and may undergo changes in future releases
167
172
```
168
173
169
174
_ See code:
170
- [ dist/commands/dev.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/dev.js ) _
175
+ [ dist/commands/dev.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/dev.js ) _
171
176
172
- ## ` hive help [COMMANDS ] `
177
+ ## ` hive help [COMMAND ] `
173
178
174
179
Display help for hive.
175
180
176
181
```
177
182
USAGE
178
- $ hive help [COMMANDS ] [-n]
183
+ $ hive help [COMMAND... ] [-n]
179
184
180
185
ARGUMENTS
181
- COMMANDS Command to show help for.
186
+ COMMAND... Command to show help for.
182
187
183
188
FLAGS
184
189
-n, --nested-commands Include all nested commands in the output.
@@ -188,7 +193,7 @@ DESCRIPTION
188
193
```
189
194
190
195
_ See code:
191
- [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v5.2.20 /src/commands/help.ts ) _
196
+ [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.0.22 /src/commands/help.ts ) _
192
197
193
198
## ` hive introspect LOCATION `
194
199
@@ -210,7 +215,7 @@ DESCRIPTION
210
215
```
211
216
212
217
_ See code:
213
- [ dist/commands/introspect.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/introspect.js ) _
218
+ [ dist/commands/introspect.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/introspect.js ) _
214
219
215
220
## ` hive operations:check FILE `
216
221
@@ -260,7 +265,7 @@ DESCRIPTION
260
265
```
261
266
262
267
_ See code:
263
- [ dist/commands/operations/check.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/operations/check.js ) _
268
+ [ dist/commands/operations/check.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/operations/check.js ) _
264
269
265
270
## ` hive schema:check FILE `
266
271
@@ -294,7 +299,7 @@ DESCRIPTION
294
299
```
295
300
296
301
_ See code:
297
- [ dist/commands/schema/check.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/schema/check.js ) _
302
+ [ dist/commands/schema/check.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/schema/check.js ) _
298
303
299
304
## ` hive schema:delete SERVICE `
300
305
@@ -321,7 +326,7 @@ DESCRIPTION
321
326
```
322
327
323
328
_ See code:
324
- [ dist/commands/schema/delete.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/schema/delete.js ) _
329
+ [ dist/commands/schema/delete.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/schema/delete.js ) _
325
330
326
331
## ` hive schema:fetch ACTIONID `
327
332
@@ -349,7 +354,7 @@ DESCRIPTION
349
354
```
350
355
351
356
_ See code:
352
- [ dist/commands/schema/fetch.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/schema/fetch.js ) _
357
+ [ dist/commands/schema/fetch.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/schema/fetch.js ) _
353
358
354
359
## ` hive schema:publish FILE `
355
360
@@ -387,21 +392,21 @@ DESCRIPTION
387
392
```
388
393
389
394
_ See code:
390
- [ dist/commands/schema/publish.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/schema/publish.js ) _
395
+ [ dist/commands/schema/publish.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/schema/publish.js ) _
391
396
392
397
## ` hive update [CHANNEL] `
393
398
394
399
update the hive CLI
395
400
396
401
```
397
402
USAGE
398
- $ hive update [CHANNEL] [-a] [-v <value> | -i ] [--force ]
403
+ $ hive update [CHANNEL] [-a] [--force ] [-i | -v <value> ]
399
404
400
405
FLAGS
401
- -a, --available Install a specific version .
406
+ -a, --available See available versions .
402
407
-i, --interactive Interactively select version to install. This is ignored if a channel is provided.
403
408
-v, --version=<value> Install a specific version.
404
- --force Force a re-download of the requested version.
409
+ --force Force a re-download of the requested version.
405
410
406
411
DESCRIPTION
407
412
update the hive CLI
@@ -425,7 +430,7 @@ EXAMPLES
425
430
```
426
431
427
432
_ See code:
428
- [ @oclif/plugin-update ] ( https://github.com/oclif/plugin-update/blob/v3 .2.4 /src/commands/update.ts ) _
433
+ [ @oclif/plugin-update ] ( https://github.com/oclif/plugin-update/blob/v4 .2.13 /src/commands/update.ts ) _
429
434
430
435
## ` hive whoami `
431
436
@@ -447,7 +452,7 @@ DESCRIPTION
447
452
```
448
453
449
454
_ See code:
450
- [ dist/commands/whoami.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.34.1 /dist/commands/whoami.js ) _
455
+ [ dist/commands/whoami.js] ( https://github.com/kamilkisiela/graphql-hive/blob/v0.37.0 /dist/commands/whoami.js ) _
451
456
452
457
<!-- commandsstop -->
453
458
0 commit comments