Importing RDF Data Example - Data not persisting in a Graph

Just started following neosemantics manual, and after importing the data using the command:

CALL n10s.rdf.import.fetch("https://github.com/neo4j-labs/neosemantics/raw/3.5/docs/rdf/nsmntx.ttl","Turtle");

It seems that the import was ok, 19 triples loaded, however it did not give me the option to visualize it as graph as per the manual.

Any thing that I have missed?

Thanks
Roberto

Hi Roberto,
What you see is the output of the import process. Showing the number of triples imported and some additional info.
Now the data has been persisted into Neo4j and you can query and visualize it in the browser.

This query should show them:

MATCH (r:Resource)-[rel]-() RETURN * LIMIT 25

Hope this helps,

JB.