query { tablesDBListRows( databaseId: "690b62ea0019a21bfd2c", tableId: "book", queries: ["equal("book_title", "gaaa")"] ) { total rows { _id data book_title } } }
127.0.0.1 - - [14/Nov/2025 12:22:15] "POST /graphql HTTP/1.1" 200 - Book Response: {'errors': [{'message': 'Cannot query field "book_title" on type "Row".', 'extensions': {'category': 'graphql'}, 'locations': [{'line': 12, 'column': 15}]}]} No book found with the given title. book_query = f""" query {{ tablesDBListRows( databaseId: "{DATABASE_ID}", tableId: "{BOOK_COLLECTION_ID}", queries: ["equal(book_title, gaaa)"] ) {{ total rows {{ _id data book_title }} }} }} """
This is the query I am currently using but I get a syntax error can anyone provide a solution for this.
Recommended threads
- Hi Folks, Database Writing Issue
Hey Folks im trying to get logging setup on my website but im getting an error, i dont have any document id and i think this is the issue but i havent got the f...
- Added Custom Domain - API requests with ...
I've added in a custom domain to Appwrite my domain itself is on cloudflare but has Appwrite name servers added and confirmed they work, I added the CAA in clou...
- GRAPH QL Filters
Hey Team The GraphQL API in Appwrite currently only supports single document fetches (databasesGetDocument) properly. So trying to pass databasesListDocuments ...