0

I can't import my graphml file into neo4j using neo4j shell. I use this command:

 import-graphml -i C:\Users\MARIAM\Desktop\football.graphml

but I get this error message:

Invalid input 'i': expected <init> (line 1, column 1 (offset: 0))

"import-graphml -i C:\Users\MARIAM\Desktop\football.graphml"
^

Community
  • 1
  • 1
Sasa88
  • 327
  • 1
  • 3
  • 15

2 Answers2

1

It seems like you did not install Neo4j shell tools properly.

The error here is that import-graphml is not recognized as a command.

Supamiu
  • 8,501
  • 7
  • 42
  • 76
0

to run the Neo4j shell tools, we need to go to the Options->Commands Prompts-> Neo4jShell.

And after run the command: import-graphml -i filepath/filename

Sasa88
  • 327
  • 1
  • 3
  • 15