Hi,
I have an entity
Entity1(PRIMARY_ID id STRING)
Entity2(PRIMARY_ID id STRING, details MAP<STRING, STRING>)
Edge Entity1_RELATED_Entity2
If I declare a SetAccum<Vertex> @entity2 I only get the primary_ids of Entity2. But I also want details attribute of Entity2.
I even tried declaring a TYPEDEF TUPLE <STRING id, MAP<STRING, STRING> details > Entity2Custom, but this fails.
Can someone please help me?
Thanks