How to pass multiple id's/values in the gremlin query?
g.V().hasNot(T.id, [need_to_pass_multiple_id's]).....
Found without(). This traversal helps to remove the given id's
without()
g.V().has(T.id, without('id1', 'id2'))