Skip to content

Commit 453a620

Browse files
Update READMEs
1 parent ca07f77 commit 453a620

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Documentation: https://typedb.com/docs/drivers/overview
1+
Documentation: https://typedb.com/docs/core-concepts/drivers/overview
22

33
## Distribution
44

RELEASE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Documentation: https://typedb.com/docs/drivers/overview
1+
Documentation: https://typedb.com/docs/core-concepts/drivers/overview
22

33
## Distribution
44

http-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the [API Reference](https://typedb.com/docs/reference/http-drivers/typescript).
1818
npm install typedb-driver-http
1919
```
2020

21-
2. Make sure the [TypeDB Server](https://docs.typedb.com/docs/running-typedb/install-and-run#start-the-typedb-server) is
21+
2. Make sure a [TypeDB Server](https://typedb.com/docs/home/install/) is
2222
running.
2323
3. Use TypeDB Driver in your program:
2424

java/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# TypeDB Java Driver
22

33
## Driver Architecture
4-
To learn about the mechanism that TypeDB drivers use set up communication with databases running on the TypeDB Server, refer to the [Drivers Overview](https://typedb.com/docs/drivers/overview).
4+
To learn about the mechanism that TypeDB drivers use set up communication with databases running on the TypeDB Server, refer to the [Drivers Overview](https://typedb.com/docs/core-concepts/drivers/overview).
55

66
## API Reference
7-
To learn about the methods available for executing queries and retrieving their answers using Java, refer to the [API Reference](https://typedb.com/docs/drivers/java/api-reference).
7+
To learn about the methods available for executing queries and retrieving their answers using Java, refer to the [API Reference](https://typedb.com/docs/reference/typedb-grpc-drivers/java).
88

99
## Import TypeDB Driver for Java through Maven
1010

@@ -25,15 +25,13 @@ To learn about the methods available for executing queries and retrieving their
2525
</dependencies>
2626
```
2727

28-
Further documentation: https://typedb.com/docs/drivers/java/overview
29-
3028
## Build TypeDB Driver for Java from Source
3129

3230
> Note: You don't need to compile TypeDB Driver from source if you just want to use it in your code. See the _"Import TypeDB Driver for Java"_ section above.
3331
3432
1. Make sure you have the following dependencies installed on your machine:
3533
- Java JDK 11 or higher
36-
- [Bazel](https://docs.bazel.build/versions/master/install.html)
34+
- [Bazel via Bazelisk](https://docs.bazel.build/versions/master/install.html)
3735

3836
2. Build the JAR:
3937

nodejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
In the meantime, please us the `http-ts` node driver instead.**
55

66
## Driver Architecture
7-
To learn about the mechanism that TypeDB drivers use set up communication with databases running on the TypeDB Server, refer to the [Drivers Overview](https://typedb.com/docs/drivers/overview).
7+
To learn about the mechanism that TypeDB drivers use set up communication with databases running on the TypeDB Server, refer to the [Drivers Overview](https://typedb.com/docs/core-concepts/drivers/overview).
88

99
## API Reference
1010
To learn about the methods available for executing queries and retrieving their answers using NodeJS, refer to the [API Reference](https://typedb.com/docs/drivers/nodejs/api-reference).

python/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
## Driver Architecture
44

55
To learn about the mechanism that TypeDB drivers use to set up communication with databases running on the TypeDB
6-
Server, refer to the [Drivers Overview](https://typedb.com/docs/drivers/overview).
6+
Server, refer to the [Drivers Overview](https://typedb.com/docs/core-concepts/drivers/overview).
77

88
## API Reference
99

1010
To learn about the methods available for executing queries and retrieving their answers using Python, refer to
11-
the [API Reference](https://typedb.com/docs/drivers/python/api-reference).
11+
the [API Reference](https://typedb.com/docs/reference/typedb-grpc-drivers/python).
1212

1313
## Install TypeDB Python Driver through Pip
1414
1. Install `typedb-driver` using `pip`:
@@ -19,7 +19,8 @@ pip install typedb-driver
1919
```
2020
pip3 install typedb-driver
2121
```
22-
3. Make sure the [TypeDB Server](https://docs.typedb.com/docs/running-typedb/install-and-run#start-the-typedb-server) is running.
22+
3. Make sure a [TypeDB Server](https://typedb.com/docs/home/install/) is
23+
running.
2324
4. In your python program, import from `typedb.driver` (see [Example usage](#example-usage) or `tests/integration` for examples):
2425
```py
2526
from typedb.driver import *

rust/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
## Driver Architecture
44

55
To learn about the mechanism that TypeDB drivers use set up communication with databases running on the TypeDB Server,
6-
refer to the [Drivers Overview](https://typedb.com/docs/drivers/overview).
6+
refer to the [Drivers Overview](https://typedb.com/docs/core-concepts/drivers/overview).
77

88
The TypeDB Rust Driver provides a fully async API that supports multiple async runtimes or a synchronous interface gated
99
by the `sync` feature.
1010

1111
## API Reference
1212

1313
To learn about the methods available for executing queries and retrieving their answers using Rust, refer to
14-
the [API Reference](https://typedb.com/docs/drivers/rust/api-reference).
14+
the [API Reference](https://typedb.com/docs/reference/typedb-grpc-drivers/rust).
1515

1616
## Install TypeDB Rust Driver through Cargo
1717

@@ -21,7 +21,7 @@ the [API Reference](https://typedb.com/docs/drivers/rust/api-reference).
2121
cargo add typedb-driver
2222
```
2323

24-
2. Make sure the [TypeDB Server](https://docs.typedb.com/docs/running-typedb/install-and-run#start-the-typedb-server) is
24+
2. Make sure a [TypeDB Server](https://typedb.com/docs/home/install/) is
2525
running.
2626
3. Use TypeDB Driver in your program (see [Example usage](#example-usage) or `tests/integration` for examples):
2727

@@ -36,7 +36,7 @@ let driver = TypeDBDriver::new_core(TypeDBDriver::DEFAULT_ADDRESS).await.unwrap(
3636
> Note: You don't need to compile TypeDB Driver from source if you just want to use it in your code. See the _"
3737
Quickstart"_ section above.
3838

39-
1. Make sure you have [Bazel](https://docs.bazel.build/versions/master/install.html) installed on your machine.
39+
1. Make sure you have [Bazel via Bazelisk](https://docs.bazel.build/versions/master/install.html) installed on your machine.
4040

4141
2. Build the library:
4242

0 commit comments

Comments
 (0)