Hello,
I have the following setup:
DSE: 6.7.4
Schema: Person -> PassengerOf -> Aircraft (edge cardinality: multiple)
Person has 3 edges of type PassengerOf;
Query:
g.V().hasLabel('Person').has('id',eq('')).as('Person').outE()
Result: 3 edges like expected
Query:
g.V().hasLabel('Person').has('id',eq('')).as('Person').outE('PassengerOf')
Result: only 1 edge (the last one from the first query)
Could this be a bug or a wrong configuration in the schema: