# `MnemosynePostgres.Schema.Node`
[🔗](https://github.com/edlontech/mnemosyne_postgres/blob/main/lib/mnemosyne_postgres/schema/node.ex#L1)

Ecto schema for the polymorphic `mnemosyne_nodes` table.

Stores all node types (semantic, episodic, procedural, etc.) in a single
table with JSONB `data` and `links` fields and a pgvector `embedding` column.

# `t`

```elixir
@type t() :: %MnemosynePostgres.Schema.Node{
  __meta__: term(),
  created_at: term(),
  data: term(),
  embedding: term(),
  id: term(),
  links: term(),
  repo_id: term(),
  tenant_id: term(),
  type: term()
}
```

---

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