You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This worked as expected in a prior project with neo4j 9.6.2 / neo4j-core 9.0.0.
Given I'm creating (<node 4>)-[:IS_RESPONSE_TO]->(<node 27>), I'm surprised to see
Posting here to see if I've missed anything "obvious" while I get the Vagrant and/or Docker env setup (hints/pointers/lessons-learned welcome on that part, too).
To the contributors: thanks for the gem!
To all: thanks in advance for any response/info
The text was updated successfully, but these errors were encountered:
Summary
ActiveGraph::Relationship
withcreates_unique
(both:none
and:all
) removes existing similar relationship out of new relationship'sto_node
Example
Given
When
I try to create
(new:Post)-[:IS_RESPONSE_TO]->(<Node 27>)
(without affecting<Node 27>
's existing existing relationship to<Node 26>
)Then
in the log, I see
post4
created asresponse
in the controller code, then this surprising/suspicious partand this expected stuff
Expected
creates
(<node 4>)-[:IS_RESPONSE_TO]->(<node 27>)
Actual
(<node 4>)-[:IS_RESPONSE_TO]->(<node 27>)
(<node 27>)-[:IS_RESPONSE_TO]->(<node 26>)
Runtime information:
Neo4j database version: 4.0-community (
Kernel version: 4.0.12,68ff600fbd22e8e07882ead9ed2e4987450006cb
) via Dockerneo4j:4.0-community
activegraph
gem version: 10.1.0rails
6.1.0ruby
3.0.1Additional
This worked as expected in a prior project with
neo4j
9.6.2 /neo4j-core
9.0.0.Given I'm creating
(<node 4>)-[:IS_RESPONSE_TO]->(<node 27>)
, I'm surprised to seewhich deletes
<node 27>
's outbound[:IS_RESPONSE_TO]
Working in the
10
branch, I'm planning to see if I can repro by adding some new examples to spec/e2e/relationship_spec.rb.Posting here to see if I've missed anything "obvious" while I get the Vagrant and/or Docker env setup (hints/pointers/lessons-learned welcome on that part, too).
To the contributors: thanks for the gem!
To all: thanks in advance for any response/info
The text was updated successfully, but these errors were encountered: