Get Tags with Children Gateway Scope

Is there a simple way to get a List<TagNode> for a certain parent path, with each Folder TagNode contains TagNode children where applicable?

I’ve tried using the SQLTagsManager .browseTagInfo function, and when passing the recursive parameter as true get a BrowseResults<TagInfoResult> set. However, this flat set doesn’t seem to respect my tag folder structure.

Any suggestions?

Try using TagManager.getTag() on your folder TagPath. I believe you’ll get a GatewayFolderTag which has a getChildren() method.