How do I use unfolded list values to specify a vertex?
问题 I'm trying to write a Gremlin traversal meaning "add all of these identities to this group", patterning it after the "inject list" example in the recipes. This is the logic I'm attempting: List identityIds = [...] gts.inject(identityIds).unfold() .V() // filter statement goes here? .addE(GROUP_INCLUDES_IDENTITY).from(V(groupId)) .iterate() As I understand it, this will spawn a traverser for each element in the list and execute the addE operation. However, I can't figure out how to express V()