Re: [Neo4j] Cannot drop index with nested property (dot) in Neo4j using bolt

2018-05-22 Thread Davide D';Alto
`id.id` same goes for labels and rel-types. > > Michael > > On Mon, May 21, 2018 at 6:26 PM, Davide D'Alto > wrote: >> >> Hi, >> I was surprised to see the following error: >> >> >> Neo.ClientError.Statement.SyntaxError: Invalid input '

[Neo4j] Cannot drop index with nested property (dot) in Neo4j using bolt

2018-05-21 Thread Davide D';Alto
Hi, I was surprised to see the following error: Neo.ClientError.Statement.SyntaxError: Invalid input '.': expected an identifier character, whitespace, ',' or ')' (line 1, column 38 (offset: 37 )) "DROP INDEX ON :SingleBoardComputer(id.id)" How is it that I can create the index but I cannot dro

Re: [Neo4j] Validate a org.neo4j.driver.v1.StatementResult

2016-10-19 Thread Davide D';Alto
other as you said is to run it (possibly in a tx that you might want to > roll back). > > In general make sure to consume / close the result you get back. > > Michael > > > On Wed, Oct 19, 2016 at 11:24 AM, Davide D'Alto > wrote: >> >> Hi, >> Is th

[Neo4j] Validate a org.neo4j.driver.v1.StatementResult

2016-10-19 Thread Davide D';Alto
Hi, Is there a way to validate the response obtain via Bolt using the neo4j-java-driver? At the moment, I'm using the following approach: StatementResult result = tx.run(...); result.hasNext(): The hasNext method will generate an exception in case an error occured on the remote server (for exa

[Neo4j] Multiple statements using the Neo4j java driver with the bolt protocol

2016-08-25 Thread Davide D';Alto
Hi, I'm using the Neoj4 java driver to replace the Rest called I've implemented to connect to a remote server. In a rest API I can run multiple statements in a single request, is it possible to do the same with the Java driver? Would that make sense? Thanks, Davide -- You received this messa

Re: [Neo4j] Neo4j transitive dependecies

2014-10-21 Thread Davide D';Alto
> https://github.com/neo4j/neo4j/blob/master/community/cypher/cypher/pom.xml#L96 > > /anders > > On Tue, Oct 21, 2014 at 5:35 PM, Davide D'Alto > wrote: > >> > Have you tried excluding the conflicting transitive dependencies and >> adding them back with the

Re: [Neo4j] Neo4j transitive dependecies

2014-10-21 Thread Davide D';Alto
Oct 21, 2014 at 4:03 PM, Anders Nawroth wrote: > Have you tried excluding the conflicting transitive dependencies and > adding them back with the correct version? > > /anders > > > On Tuesday, October 21, 2014 12:11:18 PM UTC+2, Davide D'Alto wrote: > >> > Howe

Re: [Neo4j] Neo4j transitive dependecies

2014-10-21 Thread Davide D';Alto
r:2.10.4:compile [INFO] | \- org.neo4j:neo4j-jmx:jar:2.1.5:compile If I'm not wrong neo4j-graph-algo, for example, get included with two different versions 2.0.3 and 2.1.5 On Tue, Oct 21, 2014 at 10:46 AM, Davide D'Alto wrote: > Hi Craig, > the problem for me is tha

Re: [Neo4j] Neo4j transitive dependecies

2014-10-21 Thread Davide D';Alto
you deleted .m2/repository and re-ran maven, the conflicts would be cleared > up? > > Regards, Craig > > On Tue, Oct 21, 2014 at 11:18 AM, Davide D'Alto > wrote: > >> Right, >> I didn't explain my problem properly, sorry. >> >> In our pro

Re: [Neo4j] Neo4j transitive dependecies

2014-10-21 Thread Davide D';Alto
ols:jar:1.7:system > > I don't know if the additional cypher-compiler libs could be made > optional, I've never looked into how they are loaded. > > /anders > > > On Mon, Oct 20, 2014 at 7:28 PM, Davide D'Alto > wrote: > >> Hi all, >> when

[Neo4j] Neo4j transitive dependecies

2014-10-20 Thread Davide D';Alto
Hi all, when I include the artifact org.neo4j:neo4j in the project, several other dependencies get added twice with different versions. This seems caused by the following dependencies: neo4j-cypher-compiler-1.9 and neo4j-cypher-compiler-2.0. For example I have: org.neo4j:neo4j-lucene-index:2.0.3

Re: [Neo4j] State of the java-rest-bind project

2014-05-02 Thread Davide D';Alto
Thank you very much, I've missed the neo4j jdbc driver I'll take a look at it On Fri, May 2, 2014 at 1:16 PM, Alex Frieden wrote: > What version of neo4j are you running? In general I would recommend using > the neo4j jdbc driver > On May 2, 2014 7:39 AM, "Davide

[Neo4j] State of the java-rest-bind project

2014-05-02 Thread Davide D';Alto
Hi, I need a java client to connect to Neo4j and I've seen the java-rest-bind project on github. The project is still using neo4j version 1.9.x and I was wondering what the state of it. Thanks, Davide -- You received this message because you are subscribed to the Google Groups "Neo4j" group.

Re: [Neo4j] Re: Missing maven artifact for neo4j-cypher-dsl 1.8.RC1

2014-05-01 Thread Davide D';Alto
ave an update on your work of the Cypher based part of Hibernate > OGM? That would be awesome! > > Thanks a lot > > Michael > > > On Thu, May 1, 2014 at 10:35 AM, Davide D'Alto wrote: > >> I've started to use CypherDSL in Hibernate OGM but the missing

[Neo4j] GraphDatabaseAPI and TxManager

2014-05-01 Thread Davide D';Alto
Hi, in Hibernate OGM I have create a JtaPlatform implementation that works with Neo4j. This implementation uses GraphDatabaseAPI#getDependencyResolver() to obtain the TxManager. Since GraphDatabaseAPI is deprecated, I was wondering if in the future there is still going to be a way to obtain the

Re: [Neo4j] Re: Missing maven artifact for neo4j-cypher-dsl 1.8.RC1

2014-05-01 Thread Davide D';Alto
I've started to use CypherDSL in Hibernate OGM but the missing dependency on Central might be a problem for the release of the patch I'm working at the moment. Is there any reason for not deploying it on Maven Central? Is it going to happen at some point. At the moment I'm working with version 2

Re: [Neo4j] Specify labels using CypherDSL

2013-12-18 Thread Davide D';Alto
hael Hunger wrote: >> >> No, not yet. >> >> I took a look at it some days ago, but couldn't find the time. >> >> So if anyone wants to step up and make cypher-dsl 2.0 ready, there is >> eternal fame and at least a personalized t-shirt waiting for you. &

Re: [Neo4j] Specify labels using CypherDSL

2013-12-18 Thread Davide D';Alto
> So if anyone wants to step up and make cypher-dsl 2.0 ready, there is > eternal fame and at least a personalized t-shirt waiting for you. > > Michael > > Am 18.12.2013 um 12:07 schrieb Davide D'Alto > >: > > Hi, > is there a way to specify labels for a node us

[Neo4j] Specify labels using CypherDSL

2013-12-18 Thread Davide D';Alto
Hi, is there a way to specify labels for a node using CypherDsl (https://github.com/neo4j/cypher-dsl)? I cannot find one. Thanks, Davide -- 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