i want to fetch the data that contains this techId
TypeScript
collectionId: '646f01b4bb666a8518c1',
databaseId: '646f0164d40a9ea03541',
queries: [
'tech_id' , id
]
);```
Error : Attribute 'tech_id' Not found.
TL;DR
The user is having trouble with their query syntax. They are using the incorrect format and need to use the provided query helpers. The error they are receiving is "Attribute 'tech_id' Not found."its not working Properly
this is not the right syntax for queries. You need to use the link shared above and use the provided query helpers like Query.equal('tech_id', id)
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...