Get audit trail
get_auditQuery a model's durable, append-only audit trail (newest-first): one record per committed reactive cycle (mutations, derivedUpdated, traces, flaggedConstraints, dispatchedEffects, source, sequence). This is the queryable superset of get_history/explain — it survives the in-memory ring buffer rolling over. Filter with an optional 'pathPrefix' (canonical address), an ISO-8601 'from'/'to' window, and 'limit'. (Embedded mode keeps this in memory for the session; remote/paired mode reads the server's durable store.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The model id. | |
| to | No | Optional ISO-8601 upper bound (exclusive). | |
| from | No | Optional ISO-8601 lower bound (inclusive). | |
| limit | No | Optional max records (default 100, newest-first). | |
| pathPrefix | No | Optional canonical address prefix; keep only records that touched a matching field/derivation/constraint. |