@@ -42,7 +42,10 @@ See the Console's downloadable packages.
42
42
If using versions previous to 3.1.0, you will need to install Java 11+.
43
43
=====
44
44
45
- For installation instructions, follow the steps below for your OS:
45
+ If you are using a distribution of TypeDB CE (TypeDB server), you may already have TypeDB Console included and can skip this step!
46
+ To verify, just run `typedb --help`.
47
+
48
+ For installation instructions of only the Console distribution, follow the steps below for your OS:
46
49
47
50
[tabs]
48
51
====
@@ -354,12 +357,12 @@ transaction read test
354
357
database delete test
355
358
----
356
359
357
- Execute the script with TypeDB Console:
360
+ Execute the script with TypeDB Console non-interactively :
358
361
359
362
.Run script.tqls
360
363
[source,bash]
361
364
----
362
- typedb console --username=<username> --password --script=<PATH/script.tqls>
365
+ typedb console --username=<username> --password=<password> --script=<PATH/script.tqls>
363
366
----
364
367
365
368
Where `<PATH/script.tqls>` is the path to the file and the filename.
@@ -648,8 +651,8 @@ Use these commands at the <<_server_level,Server level>> of TypeDB's <<_REPL,REP
648
651
// | Print the schema of the database with the name `<db>` on the server
649
652
650
653
2+^| User management
651
- | `user list`
652
- | List all users on the server. +
654
+ // | `user list`
655
+ // | List all users on the server. +
653
656
654
657
| `user create <username> [password]`
655
658
| Create a user with the name `<username>` on the server. When the password is omitted, it will be safely requested from the user. +
@@ -662,7 +665,7 @@ Set password for the user with the name `username`. When the new password is omi
662
665
| Delete a user with the name `<username>` on the server. +
663
666
664
667
2+^| Open a transaction
665
- | `transaction <db> read⎮write⎮schema [options]`
668
+ | `transaction read⎮write⎮schema <db> [options]`
666
669
| Start a transaction to the database with the name `<db>` with a chosen transaction type.
667
670
You can set <<_transaction_options,transaction options>>.
668
671
0 commit comments