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
CREATE
(bike:Bike{externalId:'Roubaix'}),
(state:BikeState{externalId:'Roubaix',name:"Robert's Roubaix",description:'2010 Roubaix with Tiagra and Fulcrum Racing 4s'}),
(bike)-[:CURRENT_STATE]->(state)
The returned set has size 1 but its single BikeKey element does not have a hydrated currentState property, despite the fact that the information can be retrieved from the path:
Those queries will now return nodes and relationships instead of plain path(s).
This format is now the only one supported by SDN for generated queries.
Intentionally closes#2121
As a side-effect this commit also
closes#2107closes#2109closes#2119
Polishing after rebase.
Uh oh!
There was an error while loading. Please reload this page.
spring-data-neo4j
6.0.2Problem
Note: one-liner reproducer is given below.
This is a slight variant of #2107, where I try to work around the issue (only the repository method and test change).
Given two linked entities:
And a repository with a path-mapping @Query:
With a reduced dataset:
The returned set has size 1 but its single
BikeKey
element does not have a hydratedcurrentState
property, despite the fact that the information can be retrieved from the path:Expected behavior
I expect the returned set to have size 1 and contain a
BikeKey
with a hydratedcurrentState
property.One-liner
Based on: https://github.com/fbiville/neo4jrx.git
The text was updated successfully, but these errors were encountered: