Which is faster g.V(T.id) or g.V().hasLabel('emaployee').has(T.id, 1) in apache tinkerpop gremlin.
I have both id as well label which one is better, from a programming perspective g.V(T.id) is simpler but what about the DB performance? is it the same for both?