neo4j

Neo4j 3.0.4 Enterprise trial version failed to start in Windows

北城余情 提交于 2020-01-03 04:22:28
问题 Neo4j 3.0.4 enterprise version, while trying to install-service or start its show below error. Have tried in different machine also, how to resolve this ? E:\Neo4j\neo4j-enterprise-3.0.4\bin>neo4j.bat install-service -verbose VERBOSE: Neo4j Root is 'E:\Neo4j\neo4j-enterprise-3.0.4' VERBOSE: Neo4j Server Type is 'Enterprise' VERBOSE: Neo4j Version is '3.0.4' VERBOSE: Neo4j Database Mode is '' VERBOSE: Install command specified VERBOSE: Neo4j Windows Service Name is neo4j VERBOSE: Java detected

Neo4j Client, how to retrieve node by id?

痞子三分冷 提交于 2020-01-03 03:35:12
问题 I am trying to figure out the way to retrieve node by id. MATCH (n) WHERE ID(n) = {id} RETURN n , is the Cypher I used with REST interface. Now using fluent syntax of Neo4j Client for .net I cannot find the function name in Neo4J.Cypher namespace, like for instance ALL. Anybody knows how to re-write that query in fluent syntax? client.Cypher .Match("(node:Employee)") .Where(node=>**?**(node)== 3) .Return(node) 回答1: There is no ID function name in the codebase, so you have to go old skool I'm

Neo4j Configuration with Gephi

筅森魡賤 提交于 2020-01-03 03:29:42
问题 I want to use Neo4j to store a number of graphs I created in python. I was using Gephi for visualization, and I thought the export to Neo4j plugin would be a very simple way to get the data across. The problem is that the server is seemingly not recognizing the neostore...db files that Gephi generated. I'm guessing I configured things incorrectly, but is there a way to fix that? Alternatively, I'm also open to importing the files directly. I have two files: one with node titles and attributes

Cypher: Hierarchical Sorting

五迷三道 提交于 2020-01-03 03:03:56
问题 I am new to Cypher. I was able to create a network of geographies (from the World to continents to countries to regions) and their population. You can reproduce it with this command or check the link to the console: http://console.neo4j.org/r/dkh90c CREATE (n1:Geo {name:'World'}), (n2:Geo {name:'EMEA'})-[:BELONG_TO]->(n1), (n4:Geo {name:'NORAM'})-[:BELONG_TO]->(n1), (n5:Geo {name:'Middle East'})-[:BELONG_TO]->(n2), (n6:Geo {name:'Africa'})-[:BELONG_TO]->(n2), (n7:Geo {name:'Europe'})-[:BELONG

Cypher: Hierarchical Sorting

我只是一个虾纸丫 提交于 2020-01-03 03:03:47
问题 I am new to Cypher. I was able to create a network of geographies (from the World to continents to countries to regions) and their population. You can reproduce it with this command or check the link to the console: http://console.neo4j.org/r/dkh90c CREATE (n1:Geo {name:'World'}), (n2:Geo {name:'EMEA'})-[:BELONG_TO]->(n1), (n4:Geo {name:'NORAM'})-[:BELONG_TO]->(n1), (n5:Geo {name:'Middle East'})-[:BELONG_TO]->(n2), (n6:Geo {name:'Africa'})-[:BELONG_TO]->(n2), (n7:Geo {name:'Europe'})-[:BELONG

Neo4jClient How can I return all nodes, relationships and parameters for a dynamic graph

社会主义新天地 提交于 2020-01-03 02:53:23
问题 I am building an application where node labels, parameters and relationships are going to be set by my users, so nodes, rel, and prop after a certain layer will be completely dynamic and unpredictable. My question is how do I run the following query and map the results to some sort of list that can be used to rebuild the graph visually. Using neo4jClient. The query I use directly with the Neo4j Browser works great Match(a:User),(b:Work)-->(n) Where a.UserId = 'xxxx' AND b.Name = 'CompanyA'

how to store location and time stamp data using Neo4j

无人久伴 提交于 2020-01-03 02:53:12
问题 how to store location and time stamp data generated by the buses every 2 minutes on different routes using Neo4j. Route 1 : A-> B-> C-> D-> C-> B-> A [route created in neo4j] how to achieve below time-stamp storing? 8:01 8:10 8:25 9:10 9:xx xxx xxx x:x xx:xx xx:xx xx:x x:x X:X Route 2: G-> G-> H-> I-> J-> K-> L 10:01 10:10 10:25 11:10 12:xx xxx x:x xx:xx xx:xx xx:x x:x X:X In rdbms, i store the time with each bustop as column id. How to do this neo4j. Stuck with my college project, any help

How to stop/start Neo4j server via .bat script in windows

故事扮演 提交于 2020-01-03 01:51:26
问题 When running the neo4j server in Linux, we have several commands - start, stop, restart, etc - to control it via the command line. In windows, the manual simply says: Usage - Windows Neo4j.bat Double-clicking on the Neo4j.bat script will start the server in a console. To quit, just press control-C in the console window. But how do I stop it if I've started it by executing neo4j.bat from a .bat file of my own, and thus don't have a console window? For context: I'm working on an unmanaged

neo4j : Depends: daemon but it is not installable

狂风中的少年 提交于 2020-01-03 01:22:06
问题 Anybody having this issue on ubuntu 14? >sudo apt-get install neo4j Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies:

Unable to find neo4j-cypher-dsl version 1.9.M04 anywhere

佐手、 提交于 2020-01-02 22:07:09
问题 org.springframework.data:spring-data-neo4j:2.2.1.RELEASE depends on neo4j-cypher-dsl:org.neo4j:1.9.M04 but I am unable to find this dsl artifact in any public mvn repositories. Any idea on where to get this jar? 回答1: Found this in neo4j repo here http://m2.neo4j.org/content/repositories/releases/org/neo4j/neo4j-cypher-dsl/1.9.M04/ 来源: https://stackoverflow.com/questions/16653128/unable-to-find-neo4j-cypher-dsl-version-1-9-m04-anywhere