@apollo/rover 0.9.0-rc.0 → 0.9.0
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 +47 -16
- package/package.json +1 -1
package/README.md
CHANGED
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
37
|
|
38
38
|
```console
|
39
39
|
$ rover --help
|
40
|
-
Rover 0.9.0
|
40
|
+
Rover 0.9.0
|
41
41
|
Apollo Developers <opensource@apollographql.com>
|
42
42
|
|
43
43
|
Rover - Your Graph Companion
|
@@ -69,37 +69,68 @@ USAGE:
|
|
69
69
|
|
70
70
|
OPTIONS:
|
71
71
|
--client-timeout <CLIENT_TIMEOUT>
|
72
|
-
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
72
|
+
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
73
|
+
|
74
|
+
[default: 30]
|
73
75
|
|
74
76
|
-h, --help
|
75
77
|
Print help information
|
76
78
|
|
77
79
|
--insecure-accept-invalid-certs
|
78
|
-
Accept invalid certificates when performing HTTPS requests
|
80
|
+
Accept invalid certificates when performing HTTPS requests.
|
81
|
+
|
82
|
+
You should think very carefully before using this flag.
|
83
|
+
|
84
|
+
If invalid certificates are trusted, any certificate for any site will be trusted for
|
85
|
+
use. This includes expired certificates. This introduces significant vulnerabilities,
|
86
|
+
and should only be used as a last resort.
|
79
87
|
|
80
88
|
--insecure-accept-invalid-hostnames
|
81
|
-
Accept invalid hostnames when performing HTTPS requests
|
89
|
+
Accept invalid hostnames when performing HTTPS requests.
|
90
|
+
|
91
|
+
You should think very carefully before using this flag.
|
92
|
+
|
93
|
+
If hostname verification is not used, any valid certificate for any site will be trusted
|
94
|
+
for use from any other. This introduces a significant vulnerability to man-in-the-middle
|
95
|
+
attacks.
|
82
96
|
|
83
97
|
-l, --log <LOG_LEVEL>
|
84
|
-
Specify Rover's log level
|
98
|
+
Specify Rover's log level
|
99
|
+
|
100
|
+
[possible values: error, warn, info, debug, trace]
|
85
101
|
|
86
102
|
--output <OUTPUT_TYPE>
|
87
|
-
Specify Rover's output type
|
103
|
+
Specify Rover's output type
|
104
|
+
|
105
|
+
[default: plain]
|
106
|
+
[possible values: json, plain]
|
88
107
|
|
89
108
|
-V, --version
|
90
109
|
Print version information
|
91
110
|
|
92
111
|
SUBCOMMANDS:
|
93
|
-
config
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
112
|
+
config
|
113
|
+
Configuration profile commands
|
114
|
+
dev
|
115
|
+
Combine multiple subgraphs into a local supergraph
|
116
|
+
docs
|
117
|
+
Interact with Rover's documentation
|
118
|
+
explain
|
119
|
+
Explain error codes
|
120
|
+
graph
|
121
|
+
Graph API schema commands
|
122
|
+
help
|
123
|
+
Print this message or the help of the given subcommand(s)
|
124
|
+
readme
|
125
|
+
Readme commands
|
126
|
+
subgraph
|
127
|
+
Subgraph schema commands
|
128
|
+
supergraph
|
129
|
+
Supergraph schema commands
|
130
|
+
template
|
131
|
+
Commands for working with templates
|
132
|
+
update
|
133
|
+
Commands related to updating rover
|
103
134
|
```
|
104
135
|
|
105
136
|
This repo is organized as a [`cargo` workspace], containing several related projects:
|