Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a object with id's and children, each child has a id.

Here is a example output, to my knowledge its a standard activeresource object.

RestApi::Mainbook::Eventpath 0x3fff8ec8a8e8
  name: "MMA/Boxing"
  id: 238
  children: [
    0:
      name: "World"
      id: 185424
      children: [
        0:
          name: "Bellator"
          id: 190490
          children: [
          ]
          sport_code: "BOXI"
          market_types: [
          ]
          open_market_count: 2

So far the best I can get is the top level using @obj.map(&:id), How do I get all the nested id's as well?

share|improve this question
1  
You need to ask your question better. What is your object? An array, a hash, or a custom class? – Boris Stitnicky Aug 20 '12 at 16:51

1 Answer

try:

@obj.map(&:children).map(&:id)
share|improve this answer
if .children is an array, then .map(&:id) in your code will return ids of arrays of objects, not objects. – Victor Moroz Aug 21 '12 at 1:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.