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 リレーションをランタイム日付に置き換えたいと考えています。
like customerName - Sep 08 (tamt = total) -> b here edge name = Sep 08 -- 日付からのランタイム値