
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
- [FEATURE] Better usage analytics for app...
Recently, i've gotten **73** emails from appwrite regarding excesive GBHours usage. I've almost hit the limit of 1000 and it is really hard to track down which ...
- Permissions in create_operations() Pytho...
How can I set permissions for `create_operations()`? What even is the correct way to use permissions in Python (using SDK version 13.4.1) ? In my cloud functio...
- What’s the current approach for always o...
Read that it’s not a thing out of the box, but what’s the possible setup here?
