MnemosynePostgres.Schema.Node (mnemosyne_postgres v0.1.1)

Copy Markdown View Source

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.

Summary

Types

t()

@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()
}