Tips for Matching with Cypher

The Intercom /match command will select and merge Beam entries depending on the Cypher query that completes the line. See Using the Intercom Pane

Select entries with a Person, a particular Person, a Person at a location, or anything by name.

/match (:Person) /match (:Person {name:"Ward"}) /match (:Person {location:"Sherwood"}) /match ({name:"Life"})

Select entries with at least one relation, with Ward in Action, or Ward Serves something, or Ward and Faculty related through anything.

/match ( ) -> ( ) /match ({name:"Ward"})-->(:Action) /match ({name:"Ward"})-[:Serves]->( ) /match ({name:"Ward"})-->( )<--({name:"Faculty"})