dbml-metaquery 1.0.1 → 1.1.1
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.
- package/README.md +10 -0
- package/dist/cli.bun.js +17285 -0
- package/dist/cli.js +4 -1
- package/dist/cli.js.map +3 -3
- package/dist/graph.d.ts +3 -0
- package/dist/index.bun.js +17056 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +8 -5
- package/src/cli.ts +0 -271
package/README.md
CHANGED
|
@@ -80,6 +80,15 @@ graph.getTableColor("users") // "#3498db"
|
|
|
80
80
|
graph.getGroupColor("people") // "#3498db"
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
+
### Raw Graph Access
|
|
84
|
+
|
|
85
|
+
```typescript
|
|
86
|
+
const g = graph.getGraph() // graphology Graph copy
|
|
87
|
+
g.nodes() // all table names
|
|
88
|
+
g.edges() // all FK edges
|
|
89
|
+
g.forEachEdge((edge, attrs) => { /* custom traversal */ })
|
|
90
|
+
```
|
|
91
|
+
|
|
83
92
|
### All Methods
|
|
84
93
|
|
|
85
94
|
| Method | Returns | Description |
|
|
@@ -96,6 +105,7 @@ graph.getGroupColor("people") // "#3498db"
|
|
|
96
105
|
| `getNeighbors(name)` | `Neighbors` | One-hop parents and children |
|
|
97
106
|
| `getSummary()` | `GroupSummary[]` | Groups with table counts |
|
|
98
107
|
| `searchSchema(query)` | `SearchResult[]` | Substring search across names and notes |
|
|
108
|
+
| `getGraph()` | `Graph` | Copy of the underlying graphology graph for external analysis |
|
|
99
109
|
|
|
100
110
|
## CLI
|
|
101
111
|
|