[Neo4j] Re: Support identity seed configuration

2014-12-22 Thread Alexepus
Could any Neo4j developer answer how to configure identity seed in Neo4j DB? If it is not possible, is there any plans to create this setting? It is really weird that Neo4j unlike almost all DBMS starts identity value from hardcoded 0. That's why this Id cannot be used as foreign key in an exte

Re: [Neo4j] Case insensitive regex does not work for non-ASCII strings

2014-12-22 Thread Alexepus
> > What locale are you running neo4j with? Java case insensitivity is locale > dependend > Using Java command line parameters does *not* help: "C:\Program Files\Java\jre7\bin\java.exe" -Duser.language=ru -Duser.country=RU "-Djava.util.logging.config.file=conf\windows-wrapper-logging.propertie

[Neo4j] Re: Neo4j 2.2M02 and Cypher START clause

2014-12-22 Thread ducky
Thanks for the suggestion Dmitry. I was hoping for a solution which didn't involve changing the configuration or the query. On Monday, 22 December 2014 09:56:11 UTC+5:30, Dmitry Davletbaev wrote: > > Hello Ducky! > > You can edit a cypher_parser_version option in ./conf/neo4j.properties to >

Re: [Neo4j] Web Site with Neo4j backend

2014-12-22 Thread Michael Hunger
What stack do you already know? How about a rapid graph development framework like structr.org? Otherwise python with flask and py2neo or neo4jrestclient should be good Michael Von meinem iPhone gesendet > Am 19.12.2014 um 15:00 schrieb Ceaser Cruz : > > Hello Neo4j Gurus, > > Can you please

Re: [Neo4j] Issue in ON CREATE and ON MATCH

2014-12-22 Thread Sukaant Chaudhary
Michael, I'm getting following output from the given query: Query: neo4j-sh (?)$ MATCH (entryFrom:EntryFrom {from: "9788"}), (gender:Gender {gender: "MALE", programId: "9788", date: "2014-12-03"}), (program:Program {programId: "9788"}), (channel:Channel {serviceId: "2000"}), (genre:Genre {name

Re: [Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-22 Thread Florent Biville
Indeed, an issue has been open (in 2006!). The last 3 comments seem to prove Maven will never resolve test-jar dependencies :/ Wouldn't it be worth packaging a simple JAR (with no classifier)? On Monday, 22 December 2014 09:59:40 UTC+1, Michael Hunger

Re: [Neo4j] Issue in ON CREATE and ON MATCH

2014-12-22 Thread Michael Hunger
How many rows does this return: MATCH (entryFrom:EntryFrom {from: "9788"}), (gender:Gender {gender: "MALE", programId: "9788", date: "2014-12-03"}), (program:Program {programId: "9788"}), (channel:Channel {serviceId: "2000"}), (genre:Genre {name: "EnglishCookingandRecipeShow"}) return count(*) T

[Neo4j] Web Site with Neo4j backend

2014-12-22 Thread Ceaser Cruz
Hello Neo4j Gurus, Can you please help me? I am not familiar with programming technologies but want to learn. I took the Networked Life course on Coursera on Graph Theory. After that I downloaded Neo4j and started playing with Cypher. What I want to do next is create a web application that wi

[Neo4j] Re: Neo4j 2.2M02 and Cypher START clause

2014-12-22 Thread Dmitry Davletbaev
Hello Ducky! You can edit a cypher_parser_version option in ./conf/neo4j.properties to force Neo4j to use specific Cypher version parser, e.g.: # Enable this to specify a parser other than the default one. cypher_parser_version=2.0 I hope this helps you. Dmitry Davletbaev Software Deve

Re: [Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-22 Thread Michael Hunger
Hi Florent, as a workaround can you add org.neo4j:neo4j-io:2.2-M02:test-jar to your dependencies? It seems maven does not resolve transitively type:test-jar dependencies :( Cheers, Michael On 12/22/14, Florent Biville wrote: > Thanks everyone, > > I just tested Liquigraph against milestone