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.

ccnice99
Node
since ‎03-10-2022
‎06-01-2022

User Statistics

  • 10 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I want to get all direct relationships of an entity.(This entity may be a head entity or a tail entity.) PeopleRepository.java @Query("MATCH p=(e1:People{name:$name})-[rel*1]-(e2) return e1,rel,e2") List<Triple> findAllDirectTriple(String nam...
I want to aggregate data in my SpringBoot project like below↓ public interface PeopleRepository extends Neo4jRepository<People,Long> { @Query("match (n:People) return n.group as `group`,count(n) as `num`") List<Map<String,Object>> findGroupBy...
In my Spring Boot (Version:2.6.4) Project,I use Neo4j-OGM to get information from graph database.But I encounter a problem. The error message is "Required identifier property not found for class com.example.demo.entity.Concept!" Below are some files....