3119d27c0d3e12b24f203d94b2a109751f615bc8
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>
Description
No description provided