Albert 3119d27c0d fix: Correct SurrealDB record creation to use table+ID array format
The SurrealDB JavaScript client was interpreting "node:uuid" as a table name
instead of a record ID, creating separate schemaless tables for each node.

Changed from:
  db.create("node:uuid", data)

To:
  db.create(['node', 'uuid'], data)

This ensures nodes are created as records in the main 'node' table with the
specified UUID, not as separate tables.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 19:11:09 +00:00
2025-11-08 12:44:39 +00:00
Description
No description provided
57 MiB