Suppose I have a vertex Employee and a vertex Department. Employee has a property departmentId but there is no edge between these 2 vertices, can I project departmentName along with employeeName??
g.addV('employee').
property('id', 1).
property('name', 'A').
property('departmentId', 1)
g.addV('department').
property('id', 1).
property('name', 'HR')