Hi, is it possible to use any operator on a relationship column?
I have a One to Many relationship column on a table and I would like to add entries to the column using the arrayAppend Operator.
I'm hosting Appwrite 1.9.0 and using Flutter/Dart SDK.
The following snippet:
await databases.updateRow(
databaseId: AppwriteConstants.databaseID,
tableId: AppwriteConstants.tableID,
rowId: id,
data: {
"related": Operator.arrayAppend([id])
}
);
Fails with the error relationship_value_invalid
Thank you!