RecordId identifies a single record by its table and ID, rendered as table:id. Pass it to the CRUD builders to target one record.
Source: surrealdb.kotlin
Constructor
| Parameter | Type | Description |
|---|---|---|
table | String | The table name. |
id | String | The record identifier within the table. |
When bound into a query, a RecordId is rendered with type::record(table, id) so the value is always passed safely.
Learn more
TableandRecordIdRange