feat: add topic hierarchy APIs

This commit is contained in:
2026-05-11 11:46:10 +09:00
parent d95ac8c1a0
commit ba03ecb85b
9 changed files with 223 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
import type { FactRecord, FactTopicRecord, TopicRecord } from './domain';
import type { FactRecord, FactTopicRecord, TopicRecord, TopicRelationRecord } from './domain';
export interface IdentityDatabaseSchema {
topics: TopicRecord;
facts: FactRecord;
fact_topics: FactTopicRecord;
topic_relations: TopicRelationRecord;
}