question

josef.schauer_169242 avatar image
josef.schauer_169242 asked Erick Ramirez edited

outE() vs outE('EdgeLabel')

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:

graph
10 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.

1 Answer

josef.schauer_169242 avatar image
josef.schauer_169242 answered

The problem doesn't appear in 6.7.2, so it seems to be bug in 6.7.4

Share
10 |1000

Up to 8 attachments (including images) can be used with a maximum of 1.0 MiB each and 10.0 MiB total.