
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
- Do I need Redis if using appwrite
Saw appwrite has built-in redis, but does this work for listdocuments, getdocument and other query etc? what does the appwrite redis covers under the hood?
- Issue creating team membership with USER...
Log time ago it worked without any issue when I made a demo app but now it is not working in cloud function. code ```await awTeams ?.createMembe...
- Deployment Error Logs - Golang Functions
Hi guys - I have been developing an appwrite function via the cloud service with a golang runtime environment. Currently, I only get error messages whilst deplo...
