Hello everyone.
I'm just starting with graph databases and ontology. I took this tutorial (thanks @jbarrasa for it!) as introduction. I followed the steps mentioned on the page except for the installation (I used docker, command bellow).
So, when I run the import, I have the following output:
βββββββββββββββββββββ€ββββββββββββββββ€ββββββββββββββββ€βββββββββββββ€ββββββββββββ€βββββββββββββ
β"terminationStatus"β"triplesLoaded"β"triplesParsed"β"namespaces"β"extraInfo"β"callParams"β
βββββββββββββββββββββͺββββββββββββββββͺββββββββββββββββͺβββββββββββββͺββββββββββββͺβββββββββββββ‘
β"KO" β0 β0 βnull β"Users" β{} β
βββββββββββββββββββββ΄ββββββββββββββββ΄ββββββββββββββββ΄βββββββββββββ΄ββββββββββββ΄βββββββββββββ
This is the docker run cmd:
docker run --publish=7474:7474 --publish=7687:7687 \
--env='NEO4JLABS_PLUGINS=["n10s"]' \
--env=NEO4J_AUTH=none neo4j:latest
This is the import command:
call n10s.rdf.import.fetch("file://.../.nt" + filename, "N-Triples")
Neo4j version is: 4.4.12
neosemantics version is: 4.4.0.2
I am using the web interface on localhost:7474 to run the command. The user is the default: "neo4j"
Any thoughts on this?
Thank you all