Rank 1: Thread
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.