graphinternationalizationgremlingraph-databasesproperty-graph

What is best way to implement multi-lingual / internationalization in Graph database?


What is best way to implement multi-lingual / internationalization in Graph database?

I am using Gremlin-Neputune Property graph database. I did not find any default implementation for multilingual

Let say, I have node Role with property Employee, How to maintain the same in different language?


Solution

  • RDF/SPARQL has multi lingual support built in which is handy - strings can be annotated as being in a specific language. Gremlin does not have such a concept. However you could do something like this:

    g.addV('City').
      property('name_en', 'London').
      property('name_fr', 'Londres').
      property('name_ne', 'Londen')