0

Is it possible to load the Wikidata dumps into AWS Neptune and query the data using Apache TinkerPop Gremlin?

Is there a straight-forward way to load the json/ttl/nt dumps into Neptune (or) should the dumps be in Gremlin format?

Kelvin Lawrence
  • 14,674
  • 2
  • 16
  • 38
MAK
  • 1,915
  • 4
  • 20
  • 44
  • 1
    It is possible to write code which parses the data dump. It is possible to write code to import data into AWS Neptune. It is possible to query Neptune with Gremlin. So yes, it is possible. What are you really asking? – Pete Kirkham Sep 27 '22 at 10:31
  • Thank you. I was trying to ask if there is a straight-forward way to load the json/ttl/nt dumps into Neptune (or) should the dumps be in Gremlin format. – MAK Sep 27 '22 at 11:02

1 Answers1

2

While Neptune supports both RDF and Labeled Property Graph frameworks, it is not currently possible to load data in an RDF format and query with any of the Property Graph query languages. You would need to transform the Wikidata dumps into Neptune's CSV format for Property Graph [1] first. Then you could load this data and query via Gremlin or openCypher (the two supported Property Graph query languages).

Taylor Riggan
  • 1,963
  • 6
  • 12