chore(8.0): final pre-RC1 sweep — API consistency, named errors, orphans, zero-cast codebase

This commit is contained in:
David Snelling 2026-06-11 14:51:00 -07:00
parent 970e08c466
commit 1f7e365a4e
237 changed files with 1951 additions and 49413 deletions

View file

@ -94,7 +94,7 @@ describe('Relationship Intelligence', () => {
console.log('='.repeat(80))
// Get all relationships
const allRelations = await brain.getRelations()
const allRelations = await brain.related()
console.log(`\n📊 Total relationships: ${allRelations.length}`)
// Find relationships involving Arrowhead
@ -104,7 +104,7 @@ describe('Relationship Intelligence', () => {
})
expect(arrowheadEntity.length).toBe(1)
const arrowheadRelations = await brain.getRelations({
const arrowheadRelations = await brain.related({
from: arrowheadEntity[0].id
})