I have a collection that has a relationship with 2 other collections. When I create a document from Appwrite console it works fine and it create the document. When I try to add a document from node-appwrite I get a 500 Error
I have to import around 6000 records.
appwrite version: 1.5.5
node-appwrite version: 12.0.1
Code to create the relationships:
await database.createRelationshipAttribute(
"dbID",
"collectionID",
"663019ab000e3905b278",
"manyToOne",
true,
"presupuestos",
"cliente",
"setNull"
);
