Reputation: 9000
I've just started using GraphDB and want to check this approach of ingesting documents from a CosmosDB.
So what I'm thinking is:
INSERT
query with RDF just createdIs this a general approach ok or is there something more simple I should be doing?
Any help would be appreciated.
Thanks.
Upvotes: 1
Views: 187
Reputation: 611
GraphDB supports inserting of JSONLD files, that's why it isn't necessary to convert data into RDF. The only thing you need is to send JSON-LD document to RDF4J REST API.
You can look up some examples in GraphDB documentation. Useful links:
http://graphdb.ontotext.com/documentation/standard/loading-data.html http://graphdb.ontotext.com/documentation/standard/devhub/workbench-rest-api/curl-commands.html
Upvotes: 1