# `Squidie.Persistence.JournalEntry`
[🔗](https://github.com/dark-trench/squidie/blob/main/lib/squidie/persistence/journal_entry.ex#L1)

Append-only persisted Jido journal entry.

The adapter stores the canonical `Jido.Thread.Entry` term in `entry` and keeps
`thread_id` plus `seq` as the ordered replay index.

# `t`

```elixir
@type t() :: %Squidie.Persistence.JournalEntry{
  __meta__: term(),
  entry: term(),
  id: term(),
  inserted_at: term(),
  seq: term(),
  thread: term(),
  thread_id: term(),
  updated_at: term()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
