Skip to content

Commit 4b465e7

Browse files
committed
update links
1 parent 44f6449 commit 4b465e7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/docs/targets/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ The way to map data from a data collector to a target depends on data model of t
1313

1414
| Target | Documentation | Type |
1515
|----------|---------------|-------------------------|
16-
| Postgres | [Postgres](./targets/entry-oriented/postgres) | Entry-oriented |
17-
| Qdrant | [Qdrant](./targets/entry-oriented/qdrant) | Entry-oriented |
18-
| LanceDB | [LanceDB](./targets/entry-oriented/lancedb) | Entry-oriented |
19-
| Neo4j | [Neo4j](./targets/property-graph/neo4j) | Property graph |
20-
| Kuzu | [Kuzu](./targets/property-graph/kuzu) | Property graph |
16+
| Postgres | [Postgres](./targets/entry-oriented/postgres) | Entry-oriented Targets |
17+
| Qdrant | [Qdrant](./targets/entry-oriented/qdrant) | Entry-oriented Targets |
18+
| LanceDB | [LanceDB](./targets/entry-oriented/lancedb) | Entry-oriented Targets |
19+
| Neo4j | [Neo4j](./targets/neo4j) | [Property graph Targets](#property-graph-targets) |
20+
| Kuzu | [Kuzu](./targets/kuzu) | [Property graph Targets](#property-graph-targets) |
2121

2222

2323
## Entry-Oriented Targets

docs/docs/targets/kuzu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ CocoIndex supports talking to Kuzu through its [API server](https://github.com/k
1919

2020
The `Kuzu` target spec takes the following fields:
2121

22-
* `connection` ([auth reference](../core/flow_def#auth-registry) to `KuzuConnectionSpec`): The connection to the Kuzu database. `KuzuConnectionSpec` has the following fields:
22+
* `connection` ([auth reference](/docs/core/flow_def#auth-registry) to `KuzuConnectionSpec`): The connection to the Kuzu database. `KuzuConnectionSpec` has the following fields:
2323
* `api_server_url` (`str`): The URL of the Kuzu API server, e.g. `http://localhost:8123`.
2424
* `mapping` (`Nodes | Relationships`): The mapping from collected row to nodes or relationships of the graph. For either [nodes to export](#nodes-to-export) or [relationships to export](#relationships-to-export).
2525

docs/docs/targets/neo4j.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Read [Property Graph Targets](./targets/index.md#property-graph-targets) for mor
1818

1919
The `Neo4j` target spec takes the following fields:
2020

21-
* `connection` ([auth reference](../core/flow_def#auth-registry) to `Neo4jConnectionSpec`): The connection to the Neo4j database. `Neo4jConnectionSpec` has the following fields:
21+
* `connection` ([auth reference](/docs/core/flow_def#auth-registry) to `Neo4jConnectionSpec`): The connection to the Neo4j database. `Neo4jConnectionSpec` has the following fields:
2222
* `url` (`str`): The URI of the Neo4j database to use as the internal storage, e.g. `bolt://localhost:7687`.
2323
* `user` (`str`): Username for the Neo4j database.
2424
* `password` (`str`): Password for the Neo4j database.

docs/docs/targets/postgres.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ CocoIndex automatically strips U+0000 (NUL) characters from strings before expor
4141

4242
The spec takes the following fields:
4343

44-
* `database` ([auth reference](../../core/flow_def#auth-registry) to `DatabaseConnectionSpec`, optional): The connection to the Postgres database.
45-
See [DatabaseConnectionSpec](../../core/settings#databaseconnectionspec) for its specific fields.
44+
* `database` ([auth reference](/docs/core/flow_def#auth-registry) to `DatabaseConnectionSpec`, optional): The connection to the Postgres database.
45+
See [DatabaseConnectionSpec](/docs/core/settings#databaseconnectionspec) for its specific fields.
4646
If not provided, will use the same database as the [internal storage](/docs/core/basics#internal-storage).
4747

4848
* `table_name` (`str`, optional): The name of the table to store to. If unspecified, will use the table name `[${AppNamespace}__]${FlowName}__${TargetName}`, e.g. `DemoFlow__doc_embeddings` or `Staging__DemoFlow__doc_embeddings`.

docs/docs/targets/qdrant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For all other vector types, we map to Qdrant payload as JSON arrays.
3838

3939
The spec takes the following fields:
4040

41-
* `connection` ([auth reference](../../core/flow_def#auth-registry) to `QdrantConnection`, optional): The connection to the Qdrant instance. `QdrantConnection` has the following fields:
41+
* `connection` ([auth reference](/docs/core/flow_def#auth-registry) to `QdrantConnection`, optional): The connection to the Qdrant instance. `QdrantConnection` has the following fields:
4242
* `grpc_url` (`str`): The [gRPC URL](https://qdrant.tech/documentation/interfaces/#grpc-interface) of the Qdrant instance, e.g. `http://localhost:6334/`.
4343
* `api_key` (`str`, optional). API key to authenticate requests with.
4444

0 commit comments

Comments
 (0)