1

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.

Stanislav Kralin
  • 11,070
  • 4
  • 35
  • 58
userMod2
  • 8,312
  • 13
  • 63
  • 115

1 Answers1

1

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

Sava Savov
  • 551
  • 2
  • 4