Just wondering, why would you need to create and destroy a relationship in the same batch-based transaction?
On Mon, Nov 3, 2014 at 12:00 AM, Javier de la Rosa <[email protected]> wrote: > > On Thu, Oct 30, 2014 at 6:25 PM, Nikilesh Balakrishnan < > [email protected]> wrote: > >> with db.transaction(using_globals=False) as tx1: >> ... r10 = new_event.relationships.create("PREV_EVENT", last_event, >> tx=tx1) >> ... another_event = db.nodes.create(tx=tx1) >> ... r11 = another_event.relationships.create("PREV_EVENT", >> last_event, tx=tx1) >> ... r12 = new_event.relationships.create("PREV_EVENT", another_event, >> tx=tx1) >> ... r10.delete(tx=tx1) >> > > Hi Nikilesh, > > There should be. That seems to be a bug that needs to be fixed. I created > an issue [1] in case you want to be notified when fixed. > > > > [1] https://github.com/versae/neo4j-rest-client/issues/116 > > -- > Javier de la Rosa > http://versae.es > -- Javier de la Rosa http://versae.es -- 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.
