Hi All,
I have noticed some difference between JG 0.6 and JG 1.0.
I have a person node created as follows: g.addV('person').property('firstName', 'John').property('lastName', 'Doe')
Then I run the following query:
g.V().
has("firstName", "John").
has("lastName", "Doe").
project("firstName", "lastName", "fullName").
by("firstName").
by("lastName").
by("fullName")
On JG 0.6, the result was:
==>{firstName=John, lastName=Doe, fullName=null}
On JG 1.0, the result is:
==>{firstName=John, lastName=Doe}
So, for some reason, JG 1.0 does not seem to return the 'null' fullName any more. Could you please help me if this behaviour is expected? Thank you.