Given a query like the following:
START n = node(123) MATCH p = n-[r:LIKES*..3]->x RETURN p;
The result paths that I get with the query
my workaround for this:
START n = node(123), x=node(*) MATCH p = shortestPath(n-[r:LIKES*..3]->x) RETURN p;
see the example in console