I've got this graph: (Topic)-[:INCLUDES_DOC]->(Work). Every Work has one Topic.
I need to store count of Works for Topic, but per year. It's a static count.
Current idea is something like (Topic)-[:PUBLISHED_IN{count}]->(Year)....meaning each topic has a relationship to a year if something was published, and the count is property on that relationship.
Feels like it should work, but it is the best way?
Thanks,
Zach