@semiont/graph 0.2.32-build.69 → 0.2.32-build.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,6 +29,12 @@ npm install @aws-sdk/client-neptune
29
29
  # MemoryGraph has no dependencies
30
30
  ```
31
31
 
32
+ ## Architecture Context
33
+
34
+ **Infrastructure Ownership**: In production applications, graph database instances are **created and managed by [@semiont/make-meaning](../make-meaning/)'s `startMakeMeaning()` function**, which serves as the single orchestration point for all infrastructure components (EventStore, GraphDB, RepStore, InferenceClient, JobQueue, Workers).
35
+
36
+ The examples below show direct usage for **testing, CLI tools, or standalone applications**. For backend integration, see [@semiont/make-meaning](../make-meaning/).
37
+
32
38
  ## Quick Start
33
39
 
34
40
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/graph",
3
- "version": "0.2.32-build.69",
3
+ "version": "0.2.32-build.71",
4
4
  "type": "module",
5
5
  "description": "Graph database abstraction with Neo4j, Neptune, JanusGraph, and in-memory implementations",
6
6
  "main": "./dist/index.js",