g.V(123).property('myProperty', myproperty? myProperty: null)
Here myProperty
is of integer type and I wish to save an empty value for 'myProperty'.
I know null is not supported. Is there another alternative to achieve the same? (I can't save the value as 0 either)