userMod2
userMod2

Reputation: 9000

GraphDB - Ingesting from CosmosDB

I've just started using GraphDB and want to check this approach of ingesting documents from a CosmosDB.

So what I'm thinking is:

Is 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

Answers (1)

Sava Savov
Sava Savov

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

Related Questions