Narakim Database

Built-in per-bot relational storage (SQLite). Provisioned automatically — no connection strings or secrets.

  • Quota: 250 MB per bot (shared across Development and Production)
  • Access: Automations only (narakim_database node). Not exposed outside the platform.
  • Tables: Created automatically on any operation (read, create, update, etc.) using the model name. You can read before writing — no dummy create node required.

Inputs

FieldDescription
operationcreate, read, update, delete, count
modelTable name (letters, numbers, underscores — e.g. chat_history)
dataObject for create/update (JSON object, not a string)
filterObject for read/update/delete/count
limit / offset / sortOptional for read

Use read to list rows — not query (that is for external SQL via database_object).

Studio

Under Bot Dossier → Database: view usage, define models, browse rows, and pick models when configuring nodes.

Error codes

CodeMeaning
INVALID_MODELModel name failed validation (use snake_case)
VALIDATION_ERRORMissing data/filter or invalid JSON
QUOTA_EXCEEDEDBot SQLite quota exceeded
TABLE_ERRORUnexpected SQLite failure
Was this helpful?
historyLast updated: May 10, 2026