pub async fn list_delivery_targets(
pool: &Pool,
parent: &str,
) -> Result<Vec<DeliveryTarget>, Error>Expand description
Enumerate every delivery target with pending queue rows in the
subtree rooted at parent:
- Hierarchies (subtree-inclusive): direct rows, plus tag rows resolved through a BOUND tag.
- Un-upgraded (GROUPED) tags whose
tag_groupsparent sits in the subtree (inclusive — the minted hierarchy will be a strict descendant of that parent).
ABSENT tag rows (no tags row at all) are filtered out at the
SQL level — there is nothing to wake or materialize for them.