Hi

I am writing a module that lets users create "recommendations" for news stories on the web. "Recommendation" is the node type I am adding. Now, every story has a URL, *but*, there might be more than one recommendation for the same URL.

I want users to, conceptually, add comments to the URL object rather than the recommendation object. That is, if I read User A's recommendation of URL X and you read User B's recommendation of URL X and we both post comments, then I want anyone who reads comments associated with either User A or User B's recommendation of URL X to see both of our comments.

The problem is that if the comments are associated with the recommendation object (not the URL), users who read the comments for User A's recommendation would see only my comment and not yours, continuing the example above, and those who read User B's recommendation's comments would see only your comment and not mine.

Is there some way I can achieve the functionality I'm after as a developer in Drupal? Thanks. Greg.