Hello guys,

I have latest (2.3.2) Neo4j server running within Docker:

docker run -t -d -p 7474:7474 -v $HOME/neo4j/data:/data neo4j
>

I managed to successfully start Neo4j console. I also have a scala 
application running with TinkerPop3 and neo4j-gremlin, pointing to Neo4j 
server:

val conf = configuration()
> conf.setProperty(Neo4jGraph.CONFIG_DIRECTORY, "~/neo4j/data/graph.db")
> Neo4jGraph.open(conf).asScala
>

Versions:

"com.michaelpollmeier" %% "gremlin-scala" % "3.1.0-incubating",
> "org.apache.tinkerpop" % "neo4j-gremlin" % "3.1.0-incubating",
> "org.neo4j" % "neo4j-tinkerpop-api-impl" % "0.3-2.3.0"
>

The problem I have is, nodes created with scala application are not visible 
in neo4j console, however the nodes are occupying node store and are 
available to application. Any idea? Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to