cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

arusev
Node Link
since ‎07-23-2020
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 2 Kudos given
  • 0 Kudos received

User Activity

I was trying to query my node Person by its internal ID and the code of its City like this: Optional<Person> findByIdAndCityCode(Long id, String cityCode); but the generated query behind this tries to access the ID as a property, like this: MATCH (n:...
So my current model of Person contains @Relationship(type = PROVIDES_SUPPORT, direction = INCOMING) private Map<Person, List<SupportRelationship>> supporters = new HashMap<>(); Those are the people that "support" the current Person (let's say Ange...
Kudos given to