Spring with Neo4j, GraphRepository<?> vs handmade interface
I found out that there is an interface called GraphRepository. I have a repository for users implementing a homemade interface that does its job, but I was wondering, shouldn't I implement GraphRepository instead ? Even if it will be quite long to implement and some methods will be useless, I think it is a standard and I already re-coded a lot of methods that are defined in this interface. So should I write "YAGNI" code or not respect the standard ? What is your advice ? you don't need to actually implement GraphRepository but extend it. the principals of Spring-Data is that all the boiler