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