Pippin555
Pippin555
Version or platform? I am using eyeD3 0.9.5 on Windows and I am assigning the value, not reading it. I have not followed the code all the way up to...
I have another usage for coalesce that will be useful for 'upsert', in python: airport_code = 'HLO' airport_description = 'World' t = (g.V() .has('airport', 'code', airport_code) .fold() # "None" is...
Just a couple of chapters further on: .choose(where('x', neq('y')), constant(true), constant(false)) this solves the first issue: x y xor F F F F T T T F T T T...
a small change to your example: 'GraphTraversalSource" object has no attribute 'coalesce', you'll need g.V() My Python implementation: print('option') for x in [False, True]: t = (g.V() .choose(constant(x)) .option(True, constant(False))...
I used g.coalesce(constant(true).is(true).constant(false),constant(true)) and that does not work... About V(): yes, I already have inadvertently doubled all vertices in the database when I used g.V().addV(...) , wondering where all those...