For example I want to exclude some vertex ids while querying.
Step 1: I am taking user followed by me(1234):
g.V(1234).outE("following")
Output : 9876,3246,2343,3452,1233,6545
Step 2: I have to exclude or remove certain ids
users = [3452,1233,6545]; g.V(1234).outE("following").inV().except(users)
Output : 9876,3246,2343. It should come like this but the except function didn't work. Is there any solution to filter specific vertex ids.