I have a pretty straightforward Model relationship: a POST hasMany COMMENTs.
They're both correctly related to each other and they both have the Containable attribute turned on.
Is there any way to perform a find on POSTs and return an array of just POST ids and each of its COMMENT ids?
I can easily contain other relationships, but not hasMany. Right now I'm just performing a find at recursive level 0 and grabbing the fields that I need. But this array has so much junk I don't need in it, like USER info and tags. I'd rather trim all of that stuff out and get a neat array returned. Please help.
Also, first post, please forgive me if I did anything wrong.