Spring Data Neo4j: filter by LocalDate doesn't work
问题 My small Neo4j playground application (based on Spring Boot 2, Spring Data Neo4j and the embedded driver) is a small note-keeping software. The users can filter their notes by creation date. To get a better understanding of Cypher I wrote the Cypher query using SDN's @Query ( NoteRepo.findByDay(day) ). However I can't get the filtering working. I'm confused that the LocalDate was transformed into a map (last line of the console output). In the previous query ( NoteRepo.findBySnoozeUntil(day)