and

Filter traversals using the AND boolean.

Synopsis

and(traversal, traversal, ... )
Table 1. Legend
Syntax conventions Description
Lowercase and uppercase Literal keyword. Includes ().
Italics Variable value. Replace with a user-defined value.
[] Optional. Square brackets ( [] ) surround optional command arguments. Do not type the square brackets.
{} Group. Braces ( {} ) identify a group to choose from. Do not type the braces.
| Or. A vertical bar ( | ) separates alternative elements. Type any one of the elements. Do not type the vertical bar.
... Repeatable. An ellipsis ( ... ) indicates that you can repeat the syntax element as often as required.

Description

The property() step is a filter. The and() step can take an arbitrary number of traversals to filter the returned objects using a boolean AND function. The related boolean OR function can be done with the or() step.

Examples

Find all the person vertices that have created recipes AND authored books:
g.V().hasLabel('person').
   and(outE('created'), outE('authored')).
   values('name')