mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-20 21:05:13 +02:00
Collection management (#520)
* Tech spec * Refactored Cassanda knowledge graph for single table * Collection management, librarian services to manage metadata and collection deletion
This commit is contained in:
parent
48016d8fb2
commit
13ff7d765d
48 changed files with 2941 additions and 425 deletions
|
|
@ -8,6 +8,7 @@ from . library import Library
|
|||
from . flow import Flow
|
||||
from . config import Config
|
||||
from . knowledge import Knowledge
|
||||
from . collection import Collection
|
||||
from . exceptions import *
|
||||
from . types import *
|
||||
|
||||
|
|
@ -68,3 +69,6 @@ class Api:
|
|||
|
||||
def library(self):
|
||||
return Library(self)
|
||||
|
||||
def collection(self):
|
||||
return Collection(self)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue