Hello,
Trying to get more than one record using batch mode:
BEGIN
LET file = CREATE VERTEX File SET path = '/tmp/some_file'
CREATE EDGE ownsFile FROM #16:0 TO $file
LET user = UPDATE #16:0 INCREMENT files = 1 RETURN AFTER
COMMIT RETRY 100
RETURN { user: $user, file: $file }
Everything is ok except that the returned map contains rids instead of expanded record. I suppose this is the intended behaviour.
So is there a way to get the expanded records into the returned map instead of rid?
Thank you.