Cannot upload .ttl file

I was really looking forward to getting a taste of the Linked Data world by attempting to load the Knowledge Graph Conference speaker set into Neo4j using Neosemantics KGC-knowledge-graph/kgc2020.ttl at master · KGConf/KGC-knowledge-graph · GitHub). However, even the first step of uploading a .ttl file does not work for me. Neosemantics does not see it as a .ttl file. I copied this text into a text file and saved it with a .ttl extension.
What am I missing? I even tried another set of text from the documentation, save it as a .ttl file, and it still is not recognized.
Appreciate any pointers of what I might be doing wrong. Thanks in advance.

Hi @Live_Data_Concepts, thanks for your interest in neosemantics.
The reason why n10s does not see the content in the url as RDF is because it's actually not RDF but the human-readable HTML version of the document as you see it in github.com. If you want to get the actual RDF you need to use the 'raw' version of the document (you can find it by clicking on the raw button on the page) https://raw.githubusercontent.com/KGConf/KGC-knowledge-graph/master/kgc2020.ttl.

The following should work without issues:

call n10s.graphconfig.init();

call n10s.rdf.import.fetch("https://raw.githubusercontent.com/KGConf/KGC-knowledge-graph/master/kgc2020.ttl","Turtle")

Give it a try and let us know if that solved the problem.

Cheers,

JB.

Neosemantics manual.

Hi Jesus,
thanks for getting back to me so quickly. Your approach worked nicely to import the data into Neo4j. What I attempted to use is the Neosemantics app and load the data from a file. I downloaded the content and saved it as a file with .ttl as extension, and Neosematics app doesn't see such file. I don't understand why it wouldn't see such file? I must be missing something, no?
Here is the content of the file, at least the first snippet, which looks like turtle to me:
@prefix kgc: http://www.knowledgegraph.tech/iri/ .
@prefix owl: http://www.w3.org/2002/07/owl# .
@prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# .
@prefix rdfs: http://www.w3.org/2000/01/rdf-schema# .
@prefix schema: http://schema.org/ .
@prefix skos: http://www.w3.org/2004/02/skos/core# .
@prefix wd: http://www.wikidata.org/entity/ .
@prefix xml: http://www.w3.org/XML/1998/namespace .
@prefix xsd: http://www.w3.org/2001/XMLSchema# .

http://www.knowledgegraph.tech/conference-2019 a schema:Event ;
schema:eventAttendanceMode schema:OfflineEventAttendanceMode ;
schema:name "Knowledge Graph Conference 2019" ;
schema:superEvent http://www.knowledgegraph.tech ;
owl:sameAs wd:Q87486633 .

http://www.knowledgegraph.tech/iri/00328 a schema:Event ;
schema:about http://www.knowledgegraph.tech/iri/00044,
http://www.knowledgegraph.tech/iri/00329,
http://www.knowledgegraph.tech/iri/00330,
http://www.knowledgegraph.tech/iri/00331,
http://www.knowledgegraph.tech/iri/00335,
http://www.knowledgegraph.tech/iri/00338,
http://www.knowledgegraph.tech/iri/00339 ;
schema:description "One of the challenges in protecting consumer privacy and managing data risk is the ability to validate that privacy-related data from across our data ecosystem has been identified and categorized accurately and consistently. This challenge has become especially salient in light of recent legislation like GDPR and CCPA. At Capital One, the 2nd line is using standardized semantic models (ontologies) and technology to validate whether data is privacy-related as well as recommend privacy categories to data producers." ;
schema:name "Validating Data Categories using Knowledge Graphs" ;
schema:performer http://www.knowledgegraph.tech/iri/00001,
http://www.knowledgegraph.tech/iri/00014 ;
schema:superEvent http://www.knowledgegraph.tech/conference-2020 .

http://www.knowledgegraph.tech/iri/00340 a schema:Event ;
schema:about http://www.knowledgegraph.tech/iri/00044,

Thank you for your help. I am really excited about the Neosemantics app, as it might open the door to a lot of data that otherwise seem unaccessible to me.
Best, Wolfgang

I had the same problem. When I go to upload and try to use Turtle, I am not able to select any ".ttl" files. I tried Yago 1 dataset.

A possible workaround is to rename ".ttl" to ".txt". The app is then able to load it perfectly.

Another solution would be to use fetch command with the file's url. Here ".ttl" extension works fine.

CALL n10s.rdf.import.fetch(
  'file:///path-to-file.ttl',
  'Turtle' 
)