Yearly/Weekly/Daily Trends report from Neo4j

Hi Team,

I am currently working on a use case where I have to extract data base on date filter(yearly/monthly/weekly) basis. I already have create time in my nodes.
Any help would be much appericated.

Thanks

Please provide more information to better help us help you.

We need a sample of your graph, or some description of the labels, nodes, and relationships, as well as a more specific explanation of what you're trying to accomplish.

MATCH (a:Node)
WHERE a.dateField > date() - duration('P30D')
RETURN a.data as base