Hi

Here is the screenshot of the project that I am working on.
As I mentioned ealier, I want to get the number of children block which are Code Section block nested inside of parent block which is Root block.
I used getChildren method like below
```
rootBlock.getChildren()
```
However this returns only one length of block. On the other hand getDescendants method returns all children nested inside of Root block.
I just want to get the number of blocks that nested inside only one depth(Code Section) which is 3.
How can I do this?