How to import data to a remote neo4j server? -


i have developed simple application performs crud operations on local embedded neo4j server.i have initialized server this.

public static final strin db_path=system.getproperty("user.dir")+"/neo4j/data/graph.db"; public static final graphdatabaseservice ourgraphdb = new graphdatabasefactory().newembeddeddatabase(db_path); 

now want run crud operations in remote server. firstlly want check if can import data in local server (localhost:7474/db/data).

how it?

you can write server extension has direct access embedded database of neo4j server. expose domain level rest endpoints client applications.

see: http://docs.neo4j.org/chunked/stable/server-unmanaged-extensions.html


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -