Hi all,
I am trying to export a huge Cyber Threat Intelligence graph (~1.5M nodes, ~2M relationships) in RDF with Turtle serialization.
I would like to export all the literal properties as RDF typed literals with the proper XML datatype, but unfortunately only the numerical properties have an explicit datatype, for example, when I export node with ID 0:
graphker-res:50b4f02ff15b a graphker-ont:CNA;
graphker-ont:hasTopLevelRoot graphker-res:02d4b52ad996;
graphker-ont:id "0"^^http://www.w3.org/2001/XMLSchema#long;
graphker-ont:hasCountry graphker-res:bf3e3855edaa;
graphker-ont:scope "All 1E products (including end-of-life/end-of-service products), as well as vulnerabilities in third-party software discovered by 1E that are not in another CNA's scope.";
graphker-ont:hasProgramRole graphker-res:9c59959110f5;
graphker-ont:name "1E Limited";
graphker-ont:hasOrganizationType graphker-res:8b071bd9926a;
graphker-res:27f323a6ab10 rdf:Label "cna_50b4f02ff15b" .
Since I suspected this is caused by an incorrect node property type in Neo4j graphdDB schema I tried to dump with the following the instructions in neo4j KB:
but I got an error in Neo4j browser and I was not able to find other ways to visualize the schema.
Is this the problem (and so I need to investigate further on the schema) or am I missing something in Neosemantics configuration?
Or is it just the expected behavior of the RDF export?
Thanks in advance!
Pierpaolo