Problem: I have two post types in a one-to-many relationship. I would like to create a link on the parent single post that sends Users to a differnt page containing a View, which should display the child posts of the original parent post.
Solution: In the View of child posts, add a Query Filter by post relationship, where the parent post is set by a URL parameter like wpv-related-to. Then in the parent post template, build a link with HTML and Views shortcodes to link to the correct URL, like this:
<a href="https://yoursite.com/some-custom-page/?wpv-related-to=[wpv-post-id]">Link to the page containing the View</a>