Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit a26ac03

Browse files
author
Akash Jain
committedDec 24, 2020
1.16.7
1 parent 9873808 commit a26ac03

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed
 

‎README.md

+28-28
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $ npm install -g slash-graphql
2020
$ slash-graphql COMMAND
2121
running command...
2222
$ slash-graphql (-v|--version|version)
23-
slash-graphql/1.16.6 darwin-x64 node-v14.15.1
23+
slash-graphql/1.16.7 darwin-x64 node-v14.15.1
2424
$ slash-graphql --help [COMMAND]
2525
USAGE
2626
$ slash-graphql COMMAND
@@ -75,7 +75,7 @@ EXAMPLE
7575
$ slash-graphql add-member-to-organization 0x123 user@dgraph.io
7676
```
7777

78-
_See code: [src/commands/add-member-to-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/add-member-to-organization.ts)_
78+
_See code: [src/commands/add-member-to-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/add-member-to-organization.ts)_
7979

8080
## `slash-graphql create-organization NAME`
8181

@@ -95,7 +95,7 @@ EXAMPLE
9595
$ slash-graphql create-organization myNewOrganization
9696
```
9797

98-
_See code: [src/commands/create-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/create-organization.ts)_
98+
_See code: [src/commands/create-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/create-organization.ts)_
9999

100100
## `slash-graphql delete-lambda`
101101

@@ -116,7 +116,7 @@ EXAMPLES
116116
$ slash-graphql delete-lambda -e 0x1234
117117
```
118118

119-
_See code: [src/commands/delete-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/delete-lambda.ts)_
119+
_See code: [src/commands/delete-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/delete-lambda.ts)_
120120

121121
## `slash-graphql deploy-backend NAME`
122122

@@ -130,11 +130,11 @@ ARGUMENTS
130130
NAME Backend Name
131131
132132
OPTIONS
133-
-m, --deployment-mode=readonly|graphql|flexible [default: graphql] Deployment Mode
134-
-o, --organizationId=organizationId Organization ID
135-
-q, --quiet Quiet Output
136-
-r, --region=region [default: us-west-2] Region
137-
-s, --subdomain=subdomain Subdomain
133+
-m, --mode=readonly|graphql|flexible [default: graphql] Backend Mode
134+
-o, --organizationId=organizationId Organization ID
135+
-q, --quiet Quiet Output
136+
-r, --region=region Region
137+
-s, --subdomain=subdomain Subdomain
138138
139139
ALIASES
140140
$ slash-graphql create-backend
@@ -144,7 +144,7 @@ EXAMPLE
144144
$ slash-graphql deploy-backend "My New Backend"
145145
```
146146

147-
_See code: [src/commands/deploy-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/deploy-backend.ts)_
147+
_See code: [src/commands/deploy-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/deploy-backend.ts)_
148148

149149
## `slash-graphql destroy-backend ID`
150150

@@ -165,7 +165,7 @@ EXAMPLE
165165
$ slash-graphql destroy-backend "0xid"
166166
```
167167

168-
_See code: [src/commands/destroy-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/destroy-backend.ts)_
168+
_See code: [src/commands/destroy-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/destroy-backend.ts)_
169169

170170
## `slash-graphql drop`
171171

@@ -192,7 +192,7 @@ EXAMPLE
192192
<fields>]
193193
```
194194

195-
_See code: [src/commands/drop.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/drop.ts)_
195+
_See code: [src/commands/drop.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/drop.ts)_
196196

197197
## `slash-graphql export-data OUTPUTDIR`
198198

@@ -214,7 +214,7 @@ EXAMPLE
214214
$ slash-graphql export-data -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> ./output-directory
215215
```
216216

217-
_See code: [src/commands/export-data.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/export-data.ts)_
217+
_See code: [src/commands/export-data.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/export-data.ts)_
218218

219219
## `slash-graphql get-lambda`
220220

@@ -234,7 +234,7 @@ EXAMPLES
234234
$ slash-graphql get-lambda -e 0x1234
235235
```
236236

237-
_See code: [src/commands/get-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/get-lambda.ts)_
237+
_See code: [src/commands/get-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/get-lambda.ts)_
238238

239239
## `slash-graphql get-schema [FILE]`
240240

@@ -259,7 +259,7 @@ EXAMPLES
259259
$ slash-graphql get-schema -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> -g
260260
```
261261

262-
_See code: [src/commands/get-schema.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/get-schema.ts)_
262+
_See code: [src/commands/get-schema.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/get-schema.ts)_
263263

264264
## `slash-graphql help [COMMAND]`
265265

@@ -299,7 +299,7 @@ EXAMPLE
299299
$ slash-graphql import-data -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> ./import-directory
300300
```
301301

302-
_See code: [src/commands/import-data.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/import-data.ts)_
302+
_See code: [src/commands/import-data.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/import-data.ts)_
303303

304304
## `slash-graphql lambda-logs`
305305

@@ -320,7 +320,7 @@ EXAMPLES
320320
$ slash-graphql lambda-logs -e 0x1234 -h 5
321321
```
322322

323-
_See code: [src/commands/lambda-logs.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/lambda-logs.ts)_
323+
_See code: [src/commands/lambda-logs.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/lambda-logs.ts)_
324324

325325
## `slash-graphql list-backends`
326326

@@ -346,7 +346,7 @@ EXAMPLES
346346
$ slash-graphql list-backends --csv
347347
```
348348

349-
_See code: [src/commands/list-backends.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/list-backends.ts)_
349+
_See code: [src/commands/list-backends.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/list-backends.ts)_
350350

351351
## `slash-graphql list-backups`
352352

@@ -365,7 +365,7 @@ EXAMPLE
365365
$ slash-graphql list-backups -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken>
366366
```
367367

368-
_See code: [src/commands/list-backups.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/list-backups.ts)_
368+
_See code: [src/commands/list-backups.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/list-backups.ts)_
369369

370370
## `slash-graphql list-organizations`
371371

@@ -382,7 +382,7 @@ EXAMPLE
382382
$ slash-graphql list-organizations
383383
```
384384

385-
_See code: [src/commands/list-organizations.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/list-organizations.ts)_
385+
_See code: [src/commands/list-organizations.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/list-organizations.ts)_
386386

387387
## `slash-graphql login`
388388

@@ -399,7 +399,7 @@ EXAMPLE
399399
$ slash-graphql login
400400
```
401401

402-
_See code: [src/commands/login.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/login.ts)_
402+
_See code: [src/commands/login.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/login.ts)_
403403

404404
## `slash-graphql logout`
405405

@@ -418,7 +418,7 @@ EXAMPLES
418418
$ slash-graphql logout -a
419419
```
420420

421-
_See code: [src/commands/logout.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/logout.ts)_
421+
_See code: [src/commands/logout.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/logout.ts)_
422422

423423
## `slash-graphql remove-member-from-organization ORGANIZATION MEMBER`
424424

@@ -439,7 +439,7 @@ EXAMPLE
439439
$ slash-graphql remove-organization-member 0x123 member@dgraph.io
440440
```
441441

442-
_See code: [src/commands/remove-member-from-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/remove-member-from-organization.ts)_
442+
_See code: [src/commands/remove-member-from-organization.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/remove-member-from-organization.ts)_
443443

444444
## `slash-graphql restore-backend`
445445

@@ -463,7 +463,7 @@ EXAMPLE
463463
url> [-f <backup folder> -n <backup number>]
464464
```
465465

466-
_See code: [src/commands/restore-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/restore-backend.ts)_
466+
_See code: [src/commands/restore-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/restore-backend.ts)_
467467

468468
## `slash-graphql restore-backend-status RESTOREID`
469469

@@ -485,7 +485,7 @@ EXAMPLE
485485
$ slash-graphql restore-backend-status -e https://clone.cloud.dgraph.io/graphql -t <apiToken> "restoreID"
486486
```
487487

488-
_See code: [src/commands/restore-backend-status.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/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.7/src/commands/restore-backend-status.ts)_
489489

490490
## `slash-graphql update [CHANNEL]`
491491

@@ -519,7 +519,7 @@ EXAMPLE
519519
$ slash-graphql update-backend -e 0xid -n "New Name" -m flexible
520520
```
521521

522-
_See code: [src/commands/update-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/update-backend.ts)_
522+
_See code: [src/commands/update-backend.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/update-backend.ts)_
523523

524524
## `slash-graphql update-lambda`
525525

@@ -540,7 +540,7 @@ EXAMPLES
540540
$ slash-graphql update-lambda -e 0x1234 -f /home/user/Downloads/script.js
541541
```
542542

543-
_See code: [src/commands/update-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/update-lambda.ts)_
543+
_See code: [src/commands/update-lambda.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/update-lambda.ts)_
544544

545545
## `slash-graphql update-schema [FILE]`
546546

@@ -562,5 +562,5 @@ EXAMPLE
562562
$ slash-graphql update-schema -e https://frozen-mango.cloud.dgraph.io/graphql -t <apiToken> schema-file.graphql
563563
```
564564

565-
_See code: [src/commands/update-schema.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.6/src/commands/update-schema.ts)_
565+
_See code: [src/commands/update-schema.ts](https://github.com/dgraph-io/slash-graphql-cli/blob/v1.16.7/src/commands/update-schema.ts)_
566566
<!-- commandsstop -->

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slash-graphql",
33
"description": "Command Line Tools to Manage Slash GraphQL",
4-
"version": "1.16.6",
4+
"version": "1.16.7",
55
"author": "Dgraph Labs @dgraphlabs",
66
"bin": {
77
"slash-graphql": "./bin/run"

0 commit comments

Comments
 (0)