Neosemantics (n10s) output "extraInfo": "Users"

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

I could run the command using Neo4j desktop! It seems some issue with user/credentials. I realize that "Users" mentioned on the topic was referencing to my file path ("file:///Users/.../file.nt"). But same line worked on neo4j desktop (v. 4.4.5)