I have a node (node a) with which various other nodes (node b/c/d/e) references.
I can create a view with an argument as the node I'm viewing, (node a), and get a list of the nodes that are referencing that node.
Basically on node a viewing a list of node b-e.
I want to create a views page just for the node references of that node. But how can I pass on the argument to the new page?
Thanks.
Edit: I apologize for the confusing question.
Basically I have a movie node. I have many reviews referencing the movie node.
On the movie node I use argument: content: review_of to get a listing of reviews for that movie.
This is great, but because on the movie node there's only a few reviews, I need a page where I can see all the reviews per that movie. The question is passing on the argument for the movie from the view block (say, 3 reviews for the movie) to a view page (with all the reviews).
Ideally the url for the views page would be: /movies/movie-name/reviews
I have tried this with relationships as in Owen's answer, but was not able to make this work.