and
Filter traversals using the AND boolean.
Synopsis
and(traversal, traversal, ... )
Examples
Find all the person vertices that have created recipes AND authored books:
g.V().hasLabel('person'). and(outE('created'), outE('authored')). values('name')