I am new to neo4j but I am trying to create this simple graph where edges can have multiple labels (or is it properties??)
basically
clicked
User A ----------------------------------------------------------> item B
{created at: timestamp, user key: some user specific key}
So far I am able to create
clicked
User A ----------------------------------------------------------> item B
{created at: timestamp}
clicked
User A ----------------------------------------------------------> item B
| {created at: timestamp} ^
L_________________________________________________________|
But instead of two edges, I want to have these two attributes in single edge? Is that feasible? Cypher query preferred.