@@ -20,7 +20,7 @@ $ npm install -g slash-graphql
20
20
$ slash-graphql COMMAND
21
21
running command...
22
22
$ slash-graphql (-v| --version| version)
23
- slash-graphql/1.16.4 darwin-x64 node-v14.9.0
23
+ slash-graphql/1.16.5 darwin-x64 node-v14.9.0
24
24
$ slash-graphql --help [COMMAND]
25
25
USAGE
26
26
$ slash-graphql COMMAND
31
31
# Commands
32
32
33
33
<!-- commands -->
34
+ * [ ` slash-graphql add-member-to-organization ORGANIZATION MEMBER ` ] ( #slash-graphql-add-member-to-organization-organization-member )
35
+ * [ ` slash-graphql create-organization NAME ` ] ( #slash-graphql-create-organization-name )
34
36
* [ ` slash-graphql delete-lambda ` ] ( #slash-graphql-delete-lambda )
35
37
* [ ` slash-graphql deploy-backend NAME ` ] ( #slash-graphql-deploy-backend-name )
36
38
* [ ` slash-graphql destroy-backend ID ` ] ( #slash-graphql-destroy-backend-id )
@@ -43,15 +45,58 @@ USAGE
43
45
* [ ` slash-graphql lambda-logs ` ] ( #slash-graphql-lambda-logs )
44
46
* [ ` slash-graphql list-backends ` ] ( #slash-graphql-list-backends )
45
47
* [ ` slash-graphql list-backups ` ] ( #slash-graphql-list-backups )
48
+ * [ ` slash-graphql list-organizations ` ] ( #slash-graphql-list-organizations )
46
49
* [ ` slash-graphql login ` ] ( #slash-graphql-login )
47
50
* [ ` slash-graphql logout ` ] ( #slash-graphql-logout )
51
+ * [ ` slash-graphql remove-member-from-organization ORGANIZATION MEMBER ` ] ( #slash-graphql-remove-member-from-organization-organization-member )
48
52
* [ ` slash-graphql restore-backend ` ] ( #slash-graphql-restore-backend )
49
53
* [ ` slash-graphql restore-backend-status RESTOREID ` ] ( #slash-graphql-restore-backend-status-restoreid )
50
54
* [ ` slash-graphql update [CHANNEL] ` ] ( #slash-graphql-update-channel )
51
55
* [ ` slash-graphql update-backend ID ` ] ( #slash-graphql-update-backend-id )
52
56
* [ ` slash-graphql update-lambda ` ] ( #slash-graphql-update-lambda )
53
57
* [ ` slash-graphql update-schema [FILE] ` ] ( #slash-graphql-update-schema-file )
54
58
59
+ ## ` slash-graphql add-member-to-organization ORGANIZATION MEMBER `
60
+
61
+ Add a Member to an Organization
62
+
63
+ ```
64
+ USAGE
65
+ $ slash-graphql add-member-to-organization ORGANIZATION MEMBER
66
+
67
+ ARGUMENTS
68
+ ORGANIZATION Organization Name
69
+ MEMBER Member Email Address
70
+
71
+ OPTIONS
72
+ -q, --quiet Quiet Output
73
+
74
+ EXAMPLE
75
+ $ slash-graphql add-member-to-organization 0x123 user@dgraph.io
76
+ ```
77
+
78
+ _ See code: [ src/commands/add-member-to-organization.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/add-member-to-organization.ts ) _
79
+
80
+ ## ` slash-graphql create-organization NAME `
81
+
82
+ Create an Organization
83
+
84
+ ```
85
+ USAGE
86
+ $ slash-graphql create-organization NAME
87
+
88
+ ARGUMENTS
89
+ NAME Organization Name
90
+
91
+ OPTIONS
92
+ -q, --quiet Quiet Output
93
+
94
+ EXAMPLE
95
+ $ slash-graphql create-organization myNewOrganization
96
+ ```
97
+
98
+ _ See code: [ src/commands/create-organization.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/create-organization.ts ) _
99
+
55
100
## ` slash-graphql delete-lambda `
56
101
57
102
Delete the Lambda script associated with the backend.
@@ -71,7 +116,7 @@ EXAMPLES
71
116
$ slash-graphql delete-lambda -e 0x1234
72
117
```
73
118
74
- _ See code: [ src/commands/delete-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/delete-lambda.ts ) _
119
+ _ See code: [ src/commands/delete-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/delete-lambda.ts ) _
75
120
76
121
## ` slash-graphql deploy-backend NAME `
77
122
@@ -86,6 +131,7 @@ ARGUMENTS
86
131
87
132
OPTIONS
88
133
-m, --deployment-mode=readonly|graphql|flexible [default: graphql] Deployment Mode
134
+ -o, --organizationId=organizationId Organization ID
89
135
-q, --quiet Quiet Output
90
136
-r, --region=region [default: us-west-2] Region
91
137
-s, --subdomain=subdomain Subdomain
@@ -98,7 +144,7 @@ EXAMPLE
98
144
$ slash-graphql deploy-backend "My New Backend"
99
145
```
100
146
101
- _ See code: [ src/commands/deploy-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/deploy-backend.ts ) _
147
+ _ See code: [ src/commands/deploy-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/deploy-backend.ts ) _
102
148
103
149
## ` slash-graphql destroy-backend ID `
104
150
@@ -119,7 +165,7 @@ EXAMPLE
119
165
$ slash-graphql destroy-backend "0xid"
120
166
```
121
167
122
- _ See code: [ src/commands/destroy-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/destroy-backend.ts ) _
168
+ _ See code: [ src/commands/destroy-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/destroy-backend.ts ) _
123
169
124
170
## ` slash-graphql drop `
125
171
@@ -146,7 +192,7 @@ EXAMPLE
146
192
<fields>]
147
193
```
148
194
149
- _ See code: [ src/commands/drop.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/drop.ts ) _
195
+ _ See code: [ src/commands/drop.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/drop.ts ) _
150
196
151
197
## ` slash-graphql export-data OUTPUTDIR `
152
198
@@ -168,7 +214,7 @@ EXAMPLE
168
214
$ slash-graphql export-data -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> ./output-directory
169
215
```
170
216
171
- _ See code: [ src/commands/export-data.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/export-data.ts ) _
217
+ _ See code: [ src/commands/export-data.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/export-data.ts ) _
172
218
173
219
## ` slash-graphql get-lambda `
174
220
@@ -188,7 +234,7 @@ EXAMPLES
188
234
$ slash-graphql get-lambda -e 0x1234
189
235
```
190
236
191
- _ See code: [ src/commands/get-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/get-lambda.ts ) _
237
+ _ See code: [ src/commands/get-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/get-lambda.ts ) _
192
238
193
239
## ` slash-graphql get-schema [FILE] `
194
240
@@ -213,7 +259,7 @@ EXAMPLES
213
259
$ slash-graphql get-schema -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> -g
214
260
```
215
261
216
- _ See code: [ src/commands/get-schema.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/get-schema.ts ) _
262
+ _ See code: [ src/commands/get-schema.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/get-schema.ts ) _
217
263
218
264
## ` slash-graphql help [COMMAND] `
219
265
@@ -253,7 +299,7 @@ EXAMPLE
253
299
$ slash-graphql import-data -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> ./import-directory
254
300
```
255
301
256
- _ See code: [ src/commands/import-data.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/import-data.ts ) _
302
+ _ See code: [ src/commands/import-data.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/import-data.ts ) _
257
303
258
304
## ` slash-graphql lambda-logs `
259
305
@@ -274,7 +320,7 @@ EXAMPLES
274
320
$ slash-graphql lambda-logs -e 0x1234 -h 5
275
321
```
276
322
277
- _ See code: [ src/commands/lambda-logs.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/lambda-logs.ts ) _
323
+ _ See code: [ src/commands/lambda-logs.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/lambda-logs.ts ) _
278
324
279
325
## ` slash-graphql list-backends `
280
326
@@ -300,7 +346,7 @@ EXAMPLES
300
346
$ slash-graphql list-backends --csv
301
347
```
302
348
303
- _ See code: [ src/commands/list-backends.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/list-backends.ts ) _
349
+ _ See code: [ src/commands/list-backends.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/list-backends.ts ) _
304
350
305
351
## ` slash-graphql list-backups `
306
352
@@ -319,7 +365,24 @@ EXAMPLE
319
365
$ slash-graphql list-backups -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken>
320
366
```
321
367
322
- _ See code: [ src/commands/list-backups.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4/src/commands/list-backups.ts ) _
368
+ _ See code: [ src/commands/list-backups.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/list-backups.ts ) _
369
+
370
+ ## ` slash-graphql list-organizations `
371
+
372
+ List Organizations associated with the user
373
+
374
+ ```
375
+ USAGE
376
+ $ slash-graphql list-organizations
377
+
378
+ OPTIONS
379
+ -q, --quiet Quiet Output
380
+
381
+ EXAMPLE
382
+ $ slash-graphql list-organizations
383
+ ```
384
+
385
+ _ See code: [ src/commands/list-organizations.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/list-organizations.ts ) _
323
386
324
387
## ` slash-graphql login `
325
388
@@ -336,7 +399,7 @@ EXAMPLE
336
399
$ slash-graphql login
337
400
```
338
401
339
- _ See code: [ src/commands/login.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/login.ts ) _
402
+ _ See code: [ src/commands/login.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/login.ts ) _
340
403
341
404
## ` slash-graphql logout `
342
405
@@ -355,7 +418,28 @@ EXAMPLES
355
418
$ slash-graphql logout -a
356
419
```
357
420
358
- _ See code: [ src/commands/logout.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4/src/commands/logout.ts ) _
421
+ _ See code: [ src/commands/logout.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/logout.ts ) _
422
+
423
+ ## ` slash-graphql remove-member-from-organization ORGANIZATION MEMBER `
424
+
425
+ Remove a Member from Organization
426
+
427
+ ```
428
+ USAGE
429
+ $ slash-graphql remove-member-from-organization ORGANIZATION MEMBER
430
+
431
+ ARGUMENTS
432
+ ORGANIZATION Organization UID
433
+ MEMBER Member Email Address
434
+
435
+ OPTIONS
436
+ -q, --quiet Quiet Output
437
+
438
+ EXAMPLE
439
+ $ slash-graphql remove-organization-member 0x123 member@dgraph.io
440
+ ```
441
+
442
+ _ See code: [ src/commands/remove-member-from-organization.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5/src/commands/remove-member-from-organization.ts ) _
359
443
360
444
## ` slash-graphql restore-backend `
361
445
@@ -379,7 +463,7 @@ EXAMPLE
379
463
url> [-f <backup folder> -n <backup number>]
380
464
```
381
465
382
- _ See code: [ src/commands/restore-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/restore-backend.ts ) _
466
+ _ See code: [ src/commands/restore-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/restore-backend.ts ) _
383
467
384
468
## ` slash-graphql restore-backend-status RESTOREID `
385
469
@@ -401,7 +485,7 @@ EXAMPLE
401
485
$ slash-graphql restore-backend-status -e https://clone.cloud.dgraph.io/graphql -t <apiToken> "restoreID"
402
486
```
403
487
404
- _ See code: [ src/commands/restore-backend-status.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/restore-backend-status.ts ) _
488
+ _ See code: [ src/commands/restore-backend-status.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/restore-backend-status.ts ) _
405
489
406
490
## ` slash-graphql update [CHANNEL] `
407
491
@@ -428,14 +512,15 @@ ARGUMENTS
428
512
OPTIONS
429
513
-m, --deployment-mode=readonly|graphql|flexible Deployment Mode
430
514
-n, --name=name Name
515
+ -o, --organizationId=organizationId Organization UID
431
516
-q, --quiet Quiet Output
432
517
-y, --confirm Skip Confirmation
433
518
434
519
EXAMPLE
435
520
$ slash-graphql update-backend -n "New Name" 0xid
436
521
```
437
522
438
- _ See code: [ src/commands/update-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/update-backend.ts ) _
523
+ _ See code: [ src/commands/update-backend.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/update-backend.ts ) _
439
524
440
525
## ` slash-graphql update-lambda `
441
526
@@ -456,7 +541,7 @@ EXAMPLES
456
541
$ slash-graphql update-lambda -e 0x1234 -f /home/user/Downloads/script.js
457
542
```
458
543
459
- _ See code: [ src/commands/update-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/update-lambda.ts ) _
544
+ _ See code: [ src/commands/update-lambda.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/update-lambda.ts ) _
460
545
461
546
## ` slash-graphql update-schema [FILE] `
462
547
@@ -478,5 +563,5 @@ EXAMPLE
478
563
$ slash-graphql update-schema -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> schema-file.graphql
479
564
```
480
565
481
- _ See code: [ src/commands/update-schema.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.4 /src/commands/update-schema.ts ) _
566
+ _ See code: [ src/commands/update-schema.ts] ( https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.5 /src/commands/update-schema.ts ) _
482
567
<!-- commandsstop -->
0 commit comments