You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `tg-load-turtle` command loads RDF triples from Turtle (TTL) format files into TrustGraph's knowledge graph. It parses Turtle files, converts them to TrustGraph's internal triple format, and imports them using WebSocket connections for efficient batch processing.
19
+
The `tg-load-knowledge` command loads RDF triples from Turtle (TTL) format files into TrustGraph's knowledge graph. It parses Turtle files, converts them to TrustGraph's internal triple format, and imports them using WebSocket connections for efficient batch processing.
20
20
21
21
The command supports retry logic and automatic reconnection to handle network interruptions during large data imports.
22
22
@@ -38,20 +38,20 @@ The command supports retry logic and automatic reconnection to handle network in
38
38
39
39
### Basic Turtle Loading
40
40
```bash
41
-
tg-load-turtle -i "doc123" knowledge-base.ttl
41
+
tg-load-knowledge -i "doc123" knowledge-base.ttl
42
42
```
43
43
44
44
### Multiple Files
45
45
```bash
46
-
tg-load-turtle -i "ontology-v1" \
46
+
tg-load-knowledge -i "ontology-v1" \
47
47
schema.ttl \
48
48
instances.ttl \
49
49
relationships.ttl
50
50
```
51
51
52
52
### Custom Flow and Collection
53
53
```bash
54
-
tg-load-turtle \
54
+
tg-load-knowledge \
55
55
-i "research-data" \
56
56
-f "knowledge-import-flow" \
57
57
-U "research-team" \
@@ -61,7 +61,7 @@ tg-load-turtle \
61
61
62
62
### Load with Custom API URL
63
63
```bash
64
-
tg-load-turtle \
64
+
tg-load-knowledge \
65
65
-i "production-data" \
66
66
-u "ws://production:8088/" \
67
67
production-ontology.ttl
@@ -137,20 +137,20 @@ The loader converts Turtle triples to TrustGraph format:
0 commit comments