
for example in teams' pref
i have
pref = {
"code": "CDJKUE"
}
I have created query like below
TeamList teamList = await teams.list(queries: [
Query.equal("prefs", ["CDJKUE"])
]);
type of queries in teams is
{List<String>? queries}
{"error":"AppwriteException: general_argument_invalid, Invalid queries
param: Invalid query: Attribute not found in schema: prefs (400)"}

I want to find the team name from prefs data code
teamList:: {$id: 67d20cf6ed94dac54a81, $createdAt: 2025-03-12T22:38:47.201+00:00, $updatedAt: 2025-03-12T22:38:47.517+00:00, name: Rock Team, total: 1, prefs: {data: {code: GZFRD6}}}

in query does it support like Query.equal("prefs.data.code", ["CDJKUE"]);
Recommended threads
- phantom relationships appear on parent c...
i have this bug were my past deleted collection apears as relationship to my parent collection. when i try to delete that relationship from parent it gives me e...
- Attributes Problem - Cloud
I am not able to see the attribute columns and their context on cloud. Can you help?
- Authorization header not working in Appw...
I have an Appwrite function that takes a custom bearer token as authentication. The function works fine locally when I test it with `appwrite run functions`, bu...
