@shubhamrasal/groundline
Version:
Groundline GraphDB with IPFS persistence
15 lines • 340 B
TypeScript
export interface Entity {
id?: string;
name: string;
entityType: string;
observations?: string[];
properties?: Record<string, any>;
}
export interface Relation {
id?: string;
from: string;
to: string;
relationType: string;
properties?: Record<string, any>;
}
//# sourceMappingURL=graph-model.d.ts.map