Grasshopper select sub layers item by selecting main layer

Hi
I am using human to select layers object.
In my rhino model, i separate the items into layers and sub layers
image
I tried human Dynamic Geometry Pipeline it needs to type in the specific layers name.
I type Slab, so it will select all the layer name included “Slab”, however, it filter the short name in stead of the full path, so the Transfer Plate was not selected.

Is there any way to select all the sublayers items in, main layer “Slab”?

if you want to import everything on layer and sub-layers of slab you need to write Slab* and change to component behavior on Layer Full Path (right click on it)

* means anything (including nothing) as indicated by hovering over “lay” input:

image

as an example:

consider that by using “Layer Full Path”, the address of layers becomes something like:
main_layer
main_layer::sublayer_of_main_layer
main_layer::sublayer_of_main_layer::sublayer_of_sublayer_of_main_layer
and so on, using :: as indicator of deeper branches

Thank you so much!! It is exactly what i need.