It would be nice to support GQL as one of the query languages.
Here is an example query that matches $Knows^+$ paths.
MATCH (p1:Person) -/:Knows+/-> (p2:Person)
RETURN p1, p2
Let's assume we currently support only MATCH ... RETURN COUNT (...) queries for now.