clarkwinkelmann I feel so dirty, I've just create a query to fetch this data on the spot.
my mason answers consist of 2 product id's I need it to know if a post already exists with the same answers to redirect the user there instead of making a new post.
select
a.*,
b.discussion_id,
c.slug
from flagrow_mason_answers a
LEFT JOIN flagrow_mason_discussion_answer b ON b.answer_id = a.id
LEFT JOIN discussions c on c.id = b.discussion_id
where content = {$prod1} OR content = {$prod2}"
I will need to read some more on getting this done properly the laravel / flarum way.