list_replies
Find records that reply to a given id by matching its parent or ref headers. Returns one level of replies in id order without modifying the store.
Instructions
Records that name the given id in their parent: or ref: header — one level, not a traversal. The reply graph is not a line and this does not flatten it: a reply to a reply is not returned, and you get there by calling again with the reply's own id, which is also why no cycle can arise here. Reads only; it deposits nothing and changes nothing. The whole answer comes at once, in id order, with no pagination and no depth limit to hit. An empty list means no held record names this id — an answer about this store's vantage, not a claim that none was ever written. Ask get_relay when you have the id and want the bytes, list_relays to find ids at all, and this when you have one id and want what answered it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | the id whose replies you want. `relay-` and four digits — e.g. relay-0033. Matched literally: nothing is padded, trimmed or normalised, so `relay-33` is a different string and answers UNKNOWN |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent | Yes | the id asked about, as given | |
| replies | Yes | records naming it as parent or ref, in id order. Empty is an answer, not an absence |