Rank 1: Thread
My document have a relationship "source"
If I query without doing a select, source is present in the attributes.
But if I do:
Query.select(
["title", ..., "source.* ", ...systemAttributes]);
Based on this https://github.com/appwrite/appwrite/issues/5657, it should work.
But in my case, every attributes I include are present except the relationship one which is "source".
If I do : Query.select(["source.* ", ...systemAttributes]):
I have documents like this:
{$id: 6609f1fa3031203835fb, $createdAt: 2024-03-31T23:30:03.205+00:00, $updatedAt: 2024-03-31T23:30:03.205+00:00, $permissions: []}
Basically, source is never included.
But I know that at least the server recognize the request since doing it wrongly throw an error instead.
Query.select(["source", ...systemAttributes]):
Any idea?