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
- Relations within the same table
Hello, I'm currently building a sort of dictionary (a literal one) and thus I need words (which is one single table of words in my database) to be able to have ...
- [SOLVED] Query.search() returning all ro...
When I use Query.search() instead of returning rows with the keywords provided it just returns all the rows in the table.
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...