Not sure how to search for this within the forum but I've wasted several hours on this and need some help. To try and learn how to use graph databases, I deceided to build a very small and simple graph that is based on the ticket-to-ride game board.
I've made a graph where each city is a node and each route is an edge. The edge has three properties of "owner_path_1", "owner_path_2", and "tunnel_owner". I am needing a query that will tell me if a path exists between two cities where one of the edge properties contains the player id "1". I've tried various options but just keep getting type mismatch errors or the query just spins when using variable length "*1..". Any suggestions? The neo4j Cypher manual is very limited.