START customerName=node(483), b = node(485, 498, 500)
MATCH customerName-[s:Sell]->b
WITH s.transactionDate AS date, customerName, b, sum(s.transactionAmount) AS total
CREATE customerName-[:sales_summary { date:date, tamt:total }]->b
在这里,我想使用 MMM YY 格式将 sales_summary 关系替换为运行时日期。
像 customerName - Sep 08 (tamt = total) -> b here edge name = Sep 08 -- 从日期开始的运行时值