-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[V8, FEATURE] TripleStoreModule and TripleStoreService for new V8 Graph Structure #3427
Conversation
keyword, | ||
knowledgeCollectionUAL, | ||
knowledgeAssetsUALs, | ||
triples, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be called triples? on the client we allow user to create by passing triples/quads so maybe calling it quads is better also to be consistent. or should we allow triples only on the client side?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be statements
perhaps, doesn't matter which format it is
src/service/triple-store-service.js
Outdated
this.repositoryImplementations[repository], | ||
repository, | ||
this.ualService.deriveUAL(blockchain, contract, tokenId), | ||
await this.tripleStoreModuleManager.insertKnowledgeCollectionIntoUnifiedGraph( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can paralelize these two calls with promise.all, right? delete from old graph and move to new, also maybe could add retries here too and do a rollback if it's failing?
No description provided.