When executing
tablesDB.create_row(
database_id,
table_id,
row_id,
{
rels=[
{
$id=id1,
node1=id2,
node2=id3,
},
{
$id=id2,
node1=id1,
node2=id3,
}
{
$id=id3,
node1=id1,
node2=id2,
}]
}
)
When $id is included I get an unauthorized request error. I would really like to have the $id specified since I'm trying to build a graph data type. Otherwise I would have to do a function call for every single item like before, since bulk operations also don't work with tables with relationships.
Recommended threads
- Rate limit
How do I solve "Signup Failed, Rate limit for the current endpoint has been exceeded. Please try again after some time"? I have Pro and around 2k requests per ...
- Type 'Theme' does not satisfy the constr...
Type 'Theme' does not satisfy the constraint 'Row'. Type 'Theme' is missing the following properties from type 'Row': $id, $sequence, $tableId, $databaseId, a...
- Dev Keys not working
looks like dev key are broken they simply don't work i suggest remove them until you have them working otherwise they confuse devs took me few minutes trying ...