By running the following script:
const result = await databases.listDocuments(
'xdatabase',
'xcollection',
);
Until just a few minutes ago, the contents of the xcollection collection — which has relational attributes, were also returning the related document contents. Now it only returns the document ID of the relationship.
getting the same issue all of my relationship fields have stopped working
My app has also crashed.. most probably due to the same reason
maybe due to the latest database UI change?
in the app write console all of the IDs are there but if i updated item all the fields are blank with 'no option available' and there no relationship data being returned via the api queries
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...